Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
DEdbCmdMemory.c221 CHAR16 *CommandStr; in EdbGetMemoryAddressCount() local
228 CommandStr = CommandArg; in EdbGetMemoryAddressCount()
229 if (CommandStr == NULL) { in EdbGetMemoryAddressCount()
233 Status = Symboltoi (CommandStr, &MemAddress); in EdbGetMemoryAddressCount()
236 MemAddress = Xtoi(CommandStr); in EdbGetMemoryAddressCount()
250 CommandStr = StrGetNextTokenLine (L" "); in EdbGetMemoryAddressCount()
251 if (CommandStr == NULL) { in EdbGetMemoryAddressCount()
254 *Count = Xtoi(CommandStr); in EdbGetMemoryAddressCount()
282 CHAR16 *CommandStr; in EdbGetMemoryAddressValue() local
289 CommandStr = CommandArg; in EdbGetMemoryAddressValue()
[all …]
DEdbCmdGo.c40 CHAR16 *CommandStr; in DebuggerGo() local
48 CommandStr = StrGetNextTokenLine (L" "); in DebuggerGo()
49 if (CommandStr != NULL) { in DebuggerGo()
54 Status = Symboltoi (CommandStr, &Address); in DebuggerGo()
57 Address = Xtoi(CommandStr); in DebuggerGo()
DEdbCmdSymbol.c321 CHAR16 *CommandStr; in DebuggerListSymbol() local
326 CommandStr = CommandArg; in DebuggerListSymbol()
331 if (CommandStr != NULL) { in DebuggerListSymbol()
332 if ((StriCmp (CommandStr, L"F") != 0) && in DebuggerListSymbol()
333 (StriCmp (CommandStr, L"S") != 0)) { in DebuggerListSymbol()
334 Address = Xtoi (CommandStr); in DebuggerListSymbol()
342 if (CommandStr != NULL) { in DebuggerListSymbol()
343 if (StriCmp (CommandStr, L"F") == 0) { in DebuggerListSymbol()
344 CommandStr = StrGetNextTokenLine (L" "); in DebuggerListSymbol()
345 if (CommandStr == NULL) { in DebuggerListSymbol()
[all …]
DEdbSupportUI.c220 CHAR16 *CommandStr; in Input() local
443 CommandStr = GetCommandNameByKey (Key); in Input()
444 if (CommandStr != NULL) { in Input()
445 StrnCpyS (InStr, StrLength, CommandStr, StrLength - 1); in Input()