/device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/ |
D | EdbCommand.c | 25 L"G", 26 L"G/[F5] - continue to run the program\n", 27 …L"The go command is used to cause the debugger to not interrupt execution of the EBC image. The de… 28 L"G [til <Address|Symbol>]\n" 29 L" (No Argument) - It means continue run the program.\n" 30 L" til - It means continuing run the program till IP is the Address.\n" 31 L" <Address> - The hexical address user want to break at.\n" 32 …L" <Symbol> - The symbol name for target address user want to break at. It has following for… 33 L"Execution:\n", 38 L"T", [all …]
|
D | EbcDebuggerConfig.c | 32 L"EbcDebuggerConfig Version 1.0\n" in PrintUsage() 33 L"Copyright (C) Intel Corp 2007-2016. All rights reserved.\n" in PrintUsage() 34 L"\n" in PrintUsage() 35 L"Configure EbcDebugger in EFI Shell Environment.\n" in PrintUsage() 36 L"\n" in PrintUsage() 37 L"usage: EdbCfg <Command>\n" in PrintUsage() 38 L" CommandList:\n" in PrintUsage() 39 L" BO[C|CX|R|E|T|K] <ON|OFF> - Enable/Disable BOC/BOCX/BOR/BOE/BOT/BOK.\n" in PrintUsage() 41 L"\n" in PrintUsage() 58 Print (L"Not supported!\n"); in EdbShowInfo() [all …]
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/ |
D | QueryTable.c | 24 L" Reserved" 28 L" Other" 32 L" Unknown" 36 L" APM Timer" 40 L" Modem Ring" 44 L" LAN Remote" 48 L" Power Switch" 52 L" AC Power Restored" 59 L" Hosting board" 63 L" Requires at least one daughter board or auxiliary card" [all …]
|
/device/linaro/bootloader/edk2/StdLib/LibC/Locale/ |
D | __wctoint.h | 39 case L'0': n = 0; break; in __wctoint() 40 case L'1': n = 1; break; in __wctoint() 41 case L'2': n = 2; break; in __wctoint() 42 case L'3': n = 3; break; in __wctoint() 43 case L'4': n = 4; break; in __wctoint() 44 case L'5': n = 5; break; in __wctoint() 45 case L'6': n = 6; break; in __wctoint() 46 case L'7': n = 7; break; in __wctoint() 47 case L'8': n = 8; break; in __wctoint() 48 case L'9': n = 9; break; in __wctoint() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lbaselib.c | 23 static int luaB_print (lua_State *L) { in luaB_print() argument 24 int n = lua_gettop(L); /* number of arguments */ in luaB_print() 26 lua_getglobal(L, "tostring"); in luaB_print() 30 lua_pushvalue(L, -1); /* function to be called */ in luaB_print() 31 lua_pushvalue(L, i); /* value to print */ in luaB_print() 32 lua_call(L, 1, 1); in luaB_print() 33 s = lua_tolstring(L, -1, &l); /* get result */ in luaB_print() 35 return luaL_error(L, in luaB_print() 39 lua_pop(L, 1); /* pop result */ in luaB_print() 48 static int luaB_tonumber (lua_State *L) { in luaB_tonumber() argument [all …]
|
D | ldblib.c | 25 static int db_getregistry (lua_State *L) { in db_getregistry() argument 26 lua_pushvalue(L, LUA_REGISTRYINDEX); in db_getregistry() 31 static int db_getmetatable (lua_State *L) { in db_getmetatable() argument 32 luaL_checkany(L, 1); in db_getmetatable() 33 if (!lua_getmetatable(L, 1)) { in db_getmetatable() 34 lua_pushnil(L); /* no metatable */ in db_getmetatable() 40 static int db_setmetatable (lua_State *L) { in db_setmetatable() argument 41 int t = lua_type(L, 2); in db_setmetatable() 42 luaL_argcheck(L, t == LUA_TNIL || t == LUA_TTABLE, 2, in db_setmetatable() 44 lua_settop(L, 2); in db_setmetatable() [all …]
|
D | lapi.c | 49 #define api_checkvalidindex(L, o) api_check(L, isvalid(o), "invalid index") argument 51 #define api_checkstackindex(L, i, o) \ argument 52 api_check(L, isstackindex(i, o), "index not in the stack") 55 static TValue *index2addr (lua_State *L, int idx) { in index2addr() argument 56 CallInfo *ci = L->ci; in index2addr() 59 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr() 60 if (o >= L->top) return NONVALIDVALUE; in index2addr() 64 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr() 65 return L->top + idx; in index2addr() 68 return &G(L)->l_registry; in index2addr() [all …]
|
D | loadlib.c | 105 #define setprogdir(L) ((void)0) argument 112 static void *ll_load (lua_State *L, const char *path, int seeglb); 113 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym); 134 static void *ll_load (lua_State *L, const char *path, int seeglb) { in ll_load() argument 136 if (lib == NULL) lua_pushstring(L, dlerror()); in ll_load() 141 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() argument 143 if (f == NULL) lua_pushstring(L, dlerror()); in ll_sym() 168 static void setprogdir (lua_State *L) { in setprogdir() argument 174 luaL_error(L, "unable to get ModuleFileName"); in setprogdir() 177 luaL_gsub(L, lua_tostring(L, -1), LUA_EXEC_DIR, buff); in setprogdir() [all …]
|
D | ltablib.c | 19 #define aux_getn(L,n) (luaL_checktype(L, n, LUA_TTABLE), luaL_len(L, n)) argument 24 static int maxn (lua_State *L) { in maxn() argument 26 luaL_checktype(L, 1, LUA_TTABLE); in maxn() 27 lua_pushnil(L); /* first key */ in maxn() 28 while (lua_next(L, 1)) { in maxn() 29 lua_pop(L, 1); /* remove value */ in maxn() 30 if (lua_type(L, -1) == LUA_TNUMBER) { in maxn() 31 lua_Number v = lua_tonumber(L, -1); in maxn() 35 lua_pushnumber(L, max); in maxn() 41 static int tinsert (lua_State *L) { in tinsert() argument [all …]
|
D | lmathlib.c | 26 static int math_abs (lua_State *L) { in math_abs() argument 27 lua_pushnumber(L, l_mathop(fabs)(luaL_checknumber(L, 1))); in math_abs() 31 static int math_sin (lua_State *L) { in math_sin() argument 32 lua_pushnumber(L, l_mathop(sin)(luaL_checknumber(L, 1))); in math_sin() 36 static int math_sinh (lua_State *L) { in math_sinh() argument 37 lua_pushnumber(L, l_mathop(sinh)(luaL_checknumber(L, 1))); in math_sinh() 41 static int math_cos (lua_State *L) { in math_cos() argument 42 lua_pushnumber(L, l_mathop(cos)(luaL_checknumber(L, 1))); in math_cos() 46 static int math_cosh (lua_State *L) { in math_cosh() argument 47 lua_pushnumber(L, l_mathop(cosh)(luaL_checknumber(L, 1))); in math_cosh() [all …]
|
D | ldo.c | 53 #define LUAI_THROW(L,c) throw(c) argument 54 #define LUAI_TRY(L,c,a) \ argument 60 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument 61 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument 66 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument 67 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument 84 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { in seterrorobj() argument 87 setsvalue2s(L, oldtop, G(L)->memerrmsg); /* reuse preregistered msg. */ in seterrorobj() 91 setsvalue2s(L, oldtop, luaS_newliteral(L, "error in error handling")); in seterrorobj() 95 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */ in seterrorobj() [all …]
|
D | lauxlib.c | 43 static int findfield (lua_State *L, int objidx, int level) { in findfield() argument 44 if (level == 0 || !lua_istable(L, -1)) in findfield() 46 lua_pushnil(L); /* start 'next' loop */ in findfield() 47 while (lua_next(L, -2)) { /* for each pair in table */ in findfield() 48 if (lua_type(L, -2) == LUA_TSTRING) { /* ignore non-string keys */ in findfield() 49 if (lua_rawequal(L, objidx, -1)) { /* found object? */ in findfield() 50 lua_pop(L, 1); /* remove value (but keep name) */ in findfield() 53 else if (findfield(L, objidx, level - 1)) { /* try recursively */ in findfield() 54 lua_remove(L, -2); /* remove table (but keep name) */ in findfield() 55 lua_pushliteral(L, "."); in findfield() [all …]
|
D | liolib.c | 58 #define lua_popen(L,c,m) ((void)L, fflush(NULL), popen(c,m)) argument 59 #define lua_pclose(L,file) ((void)L, pclose(file)) argument 63 #define lua_popen(L,c,m) ((void)L, _popen(c,m)) argument 64 #define lua_pclose(L,file) ((void)L, _pclose(file)) argument 69 #define lua_popen(L,c,m) ((void)((void)c, m), \ argument 70 luaL_error(L, LUA_QL("popen") " not supported"), (FILE*)0) 71 #define lua_pclose(L,file) ((void)((void)L, file), -1) argument 125 #define tolstream(L) ((LStream *)luaL_checkudata(L, 1, LUA_FILEHANDLE)) argument 130 static int io_type (lua_State *L) { in io_type() argument 132 luaL_checkany(L, 1); in io_type() [all …]
|
D | lcorolib.c | 20 static int auxresume (lua_State *L, lua_State *co, int narg) { in auxresume() argument 23 lua_pushliteral(L, "too many arguments to resume"); in auxresume() 27 lua_pushliteral(L, "cannot resume dead coroutine"); in auxresume() 30 lua_xmove(L, co, narg); in auxresume() 31 status = lua_resume(co, L, narg); in auxresume() 34 if (!lua_checkstack(L, nres + 1)) { in auxresume() 36 lua_pushliteral(L, "too many results to resume"); in auxresume() 39 lua_xmove(co, L, nres); /* move yielded values */ in auxresume() 43 lua_xmove(co, L, 1); /* move error message */ in auxresume() 49 static int luaB_coresume (lua_State *L) { in luaB_coresume() argument [all …]
|
D | lua.c | 69 #define lua_readline(L,b,p) ((void)L, ((b)=readline(p)) != NULL) argument 70 #define lua_saveline(L,idx) \ argument 71 if (lua_rawlen(L,idx) > 0) /* non-empty line? */ \ 72 add_history(lua_tostring(L, idx)); /* add it to history */ 73 #define lua_freeline(L,b) ((void)L, free(b)) argument 77 #define lua_readline(L,b,p) \ argument 78 ((void)L, fputs(p, stdout), fflush(stdout), /* show prompt */ \ 80 #define lua_saveline(L,idx) { (void)L; (void)idx; } argument 81 #define lua_freeline(L,b) { (void)L; (void)b; } argument 94 static void lstop (lua_State *L, lua_Debug *ar) { in lstop() argument [all …]
|
D | lstate.c | 77 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l))) argument 89 static unsigned int makeseed (lua_State *L) { in makeseed() argument 93 addbuff(buff, p, L); /* heap variable */ in makeseed() 112 CallInfo *luaE_extendCI (lua_State *L) { in luaE_extendCI() argument 113 CallInfo *ci = luaM_new(L, CallInfo); in luaE_extendCI() 114 lua_assert(L->ci->next == NULL); in luaE_extendCI() 115 L->ci->next = ci; in luaE_extendCI() 116 ci->previous = L->ci; in luaE_extendCI() 122 void luaE_freeCI (lua_State *L) { in luaE_freeCI() argument 123 CallInfo *ci = L->ci; in luaE_freeCI() [all …]
|
D | loslib.c | 80 static int os_execute (lua_State *L) { in os_execute() argument 81 const char *cmd = luaL_optstring(L, 1, NULL); in os_execute() 84 return luaL_execresult(L, stat); in os_execute() 86 lua_pushboolean(L, stat); /* true if there is a shell */ in os_execute() 92 static int os_remove (lua_State *L) { in os_remove() argument 93 const char *filename = luaL_checkstring(L, 1); in os_remove() 94 return luaL_fileresult(L, remove(filename) == 0, filename); in os_remove() 98 static int os_rename (lua_State *L) { in os_rename() argument 99 const char *fromname = luaL_checkstring(L, 1); in os_rename() 100 const char *toname = luaL_checkstring(L, 2); in os_rename() [all …]
|
D | lbitlib.c | 36 static b_uint andaux (lua_State *L) { in andaux() argument 37 int i, n = lua_gettop(L); in andaux() 40 r &= luaL_checkunsigned(L, i); in andaux() 45 static int b_and (lua_State *L) { in b_and() argument 46 b_uint r = andaux(L); in b_and() 47 lua_pushunsigned(L, r); in b_and() 52 static int b_test (lua_State *L) { in b_test() argument 53 b_uint r = andaux(L); in b_test() 54 lua_pushboolean(L, r != 0); in b_test() 59 static int b_or (lua_State *L) { in b_or() argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/ |
D | PageList.c | 27 { L"/", IndexPage, L"Index of pages" }, ///< List the pages 32 …{ PAGE_BOOT_SERVICES_TABLE, BootServicesTablePage, L"Boot Services Table" }, ///< Format… 33 …{ PAGE_CONFIGURATION_TABLE, ConfigurationTablePage, L"Configuration Table" }, ///< Format… 34 …{ L"/DhcpOptions", DhcpOptionsPage, L"DHCP Options" }, ///< Displa… 35 { PAGE_ACPI_APIC, AcpiApicPage, L"APIC" }, ///< Format APIC 36 { PAGE_ACPI_BGRT, AcpiBgrtPage, L"BGRT" }, ///< Format BGRT 37 …{ PAGE_ACPI_DSDT, AcpiDsdtPage, L"DSDT - Differentiated System Description Table" }, ///< Format… 38 …{ PAGE_DXE_SERVICES_TABLE, DxeServicesTablePage, L"DXE Services Table" }, ///< Format… 39 { L"/Exit", ExitPage, L"Exit the web server" }, ///< Exit the web server application 40 …{ PAGE_ACPI_FADT, AcpiFadtPage, L"FADT - Fixed ACPI Description Table" }, ///< Format… [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/ |
D | BoxDraw.c | 45 {BOXDRAW_HORIZONTAL, 0xc4, L'-'}, 46 {BOXDRAW_VERTICAL, 0xb3, L'|'}, 47 {BOXDRAW_DOWN_RIGHT, 0xda, L'/'}, 48 {BOXDRAW_DOWN_LEFT, 0xbf, L'\\'}, 49 {BOXDRAW_UP_RIGHT, 0xc0, L'\\'}, 50 {BOXDRAW_UP_LEFT, 0xd9, L'/'}, 51 {BOXDRAW_VERTICAL_RIGHT, 0xc3, L'|'}, 52 {BOXDRAW_VERTICAL_LEFT, 0xb4, L'|'}, 53 {BOXDRAW_DOWN_HORIZONTAL, 0xc2, L'+'}, 54 {BOXDRAW_UP_HORIZONTAL, 0xc1, L'+'}, [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/ |
D | BoxDraw.c | 45 {BOXDRAW_HORIZONTAL, 0xc4, L'-'}, 46 {BOXDRAW_VERTICAL, 0xb3, L'|'}, 47 {BOXDRAW_DOWN_RIGHT, 0xda, L'/'}, 48 {BOXDRAW_DOWN_LEFT, 0xbf, L'\\'}, 49 {BOXDRAW_UP_RIGHT, 0xc0, L'\\'}, 50 {BOXDRAW_UP_LEFT, 0xd9, L'/'}, 51 {BOXDRAW_VERTICAL_RIGHT, 0xc3, L'|'}, 52 {BOXDRAW_VERTICAL_LEFT, 0xb4, L'|'}, 53 {BOXDRAW_DOWN_HORIZONTAL, 0xc2, L'+'}, 54 {BOXDRAW_UP_HORIZONTAL, 0xc1, L'+'}, [all …]
|
/device/linaro/bootloader/edk2/MdePkg/Include/Guid/ |
D | GlobalVariable.h | 50 #define EFI_LANG_CODES_VARIABLE_NAME L"LangCodes" 55 #define EFI_LANG_VARIABLE_NAME L"Lang" 60 #define EFI_TIME_OUT_VARIABLE_NAME L"Timeout" 65 #define EFI_PLATFORM_LANG_CODES_VARIABLE_NAME L"PlatformLangCodes" 70 #define EFI_PLATFORM_LANG_VARIABLE_NAME L"PlatformLang" 75 #define EFI_CON_IN_VARIABLE_NAME L"ConIn" 76 #define EFI_CON_OUT_VARIABLE_NAME L"ConOut" 77 #define EFI_ERR_OUT_VARIABLE_NAME L"ErrOut" 82 #define EFI_CON_IN_DEV_VARIABLE_NAME L"ConInDev" 83 #define EFI_CON_OUT_DEV_VARIABLE_NAME L"ConOutDev" [all …]
|
/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/ |
D | IpSecConfig.c | 38 { L"-p", TypeValue }, 39 { L"-a", TypeValue }, 40 { L"-i", TypeValue }, 41 { L"-e", TypeValue }, 42 { L"-d", TypeValue }, 43 { L"-f", TypeFlag }, 44 { L"-l", TypeFlag }, 45 { L"-enable", TypeFlag }, 46 { L"-disable", TypeFlag }, 47 { L"-status", TypeFlag }, [all …]
|
/device/linaro/bootloader/edk2/StdLib/Include/Lua/ |
D | lua.h | 56 typedef int (*lua_CFunction) (lua_State *L); 62 typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz); 64 typedef int (*lua_Writer) (lua_State *L, const void* p, size_t sz, void* ud); 132 LUA_API void (lua_close) (lua_State *L); 133 LUA_API lua_State *(lua_newthread) (lua_State *L); 135 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf); 138 LUA_API const lua_Number *(lua_version) (lua_State *L); 144 LUA_API int (lua_absindex) (lua_State *L, int idx); 145 LUA_API int (lua_gettop) (lua_State *L); 146 LUA_API void (lua_settop) (lua_State *L, int idx); [all …]
|
D | lauxlib.h | 29 LUALIB_API void (luaL_checkversion_) (lua_State *L, lua_Number ver); 30 #define luaL_checkversion(L) luaL_checkversion_(L, LUA_VERSION_NUM) argument 32 LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e); 33 LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e); 34 LUALIB_API const char *(luaL_tolstring) (lua_State *L, int idx, size_t *len); 35 LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg); 36 LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg, 38 LUALIB_API const char *(luaL_optlstring) (lua_State *L, int numArg, 40 LUALIB_API lua_Number (luaL_checknumber) (lua_State *L, int numArg); 41 LUALIB_API lua_Number (luaL_optnumber) (lua_State *L, int nArg, lua_Number def); [all …]
|