Home
last modified time | relevance | path

Searched refs:inuse (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dbdist_msi.py498 inuse = PyDialog(db, "FilesInUse",
503 inuse.text("Title", 15, 6, 200, 15, 0x30003,
505 inuse.text("Description", 20, 23, 280, 20, 0x30003,
507 inuse.text("Text", 20, 55, 330, 50, 3,
509 inuse.control("List", "ListBox", 20, 107, 330, 130, 7, "FileInUseProcess",
511 c=inuse.back("Exit", "Ignore", name="Exit")
513 c=inuse.next("Ignore", "Retry", name="Ignore")
515 c=inuse.cancel("Retry", "Exit", name="Retry")
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
Dmsi.py519 inuse = PyDialog(db, "FilesInUse",
524 inuse.text("Title", 15, 6, 200, 15, 0x30003,
526 inuse.text("Description", 20, 23, 280, 20, 0x30003,
528 inuse.text("Text", 20, 55, 330, 50, 3,
530 inuse.control("List", "ListBox", 20, 107, 330, 130, 7, "FileInUseProcess",
532 c=inuse.back("Exit", "Ignore", name="Exit")
534 c=inuse.next("Ignore", "Retry", name="Ignore")
536 c=inuse.cancel("Retry", "Exit", name="Retry")
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldo.c206 int inuse = stackinuse(L); in luaD_shrinkstack() local
207 int goodsize = inuse + (inuse / 8) + 2*EXTRA_STACK; in luaD_shrinkstack()
209 if (inuse > LUAI_MAXSTACK || /* handling stack overflow? */ in luaD_shrinkstack()
Dlapi.c99 int inuse = cast_int(L->top - L->stack) + EXTRA_STACK; in lua_checkstack() local
100 if (inuse > LUAI_MAXSTACK - size) /* can grow without overflow? */ in lua_checkstack()