HomeSort by relevance Sort by last modified time
    Searched defs:ErrorString (Results 1 - 25 of 45) sorted by null

1 2

  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
Gpt.S 227 leaw %cs:ErrorString, %si
237 ErrorString:
Mbr.S 175 leaw %cs:ErrorString, %si
189 ErrorString:
Gpt.asm 225 lea si, cs:[ErrorString]
234 ErrorString:
Mbr.asm 175 lea si, cs:[ErrorString]
188 ErrorString:
bootsect.S 276 movw $ErrorString, %si
283 ErrorString:
bootsect.asm 274 lea si, cs:[ErrorString]
281 ErrorString:
bs16.S 264 movw $ErrorString, %si
271 ErrorString:
bs16.asm 261 lea si, cs:[ErrorString]
268 ErrorString:
bs32.S 285 movw $ErrorString, %si
292 ErrorString:
bs32.asm 283 mov si, offset ErrorString
290 ErrorString:
start.S 289 leaw ErrorString, %si
302 ErrorString:
    [all...]
start16.S 283 leaw ErrorString, %si
296 ErrorString:
    [all...]
  /external/skia/tools/mdbviz/
Model.cpp 54 const char* Model::ErrorString(ErrorCode err) {
  /external/skqp/tools/mdbviz/
Model.cpp 54 const char* Model::ErrorString(ErrorCode err) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /external/python/cpython2/Include/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /external/python/cpython3/Include/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /prebuilts/gdb/linux-x86/include/python2.7/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /device/linaro/bootloader/edk2/MdePkg/Library/DxeHstiLib/
HstiDxe.c 159 CHAR16 *ErrorString;
214 ErrorString = (CHAR16 *)((UINTN)Hsti + sizeof(ADAPTER_INFO_PLATFORM_SECURITY) - Hsti->SecurityFeaturesSize * 3);
217 // basic check for ErrorString
229 // ErrorString might not be CHAR16 aligned.
231 CopyMem (&ErrorChar, ErrorString, sizeof(ErrorChar));
233 ErrorString++;
234 CopyMem (&ErrorChar, ErrorString, sizeof(ErrorChar));
238 // check the length of ErrorString
241 DEBUG ((EFI_D_ERROR, "ErrorString has no NUL CHAR\n"));
245 DEBUG ((EFI_D_ERROR, "ErrorString Length incorrect\n"));
    [all...]
  /external/stressapptest/src/
sattypes.h 181 inline string ErrorString(int error_num) {
  /prebuilts/go/darwin-x86/src/syscall/
syscall_plan9.go 18 // ErrorString implements Error's String method by returning itself.
19 type ErrorString string
21 func (e ErrorString) Error() string { return string(e) }
23 // NewError converts s to an ErrorString, which satisfies the Error interface.
24 func NewError(s string) error { return ErrorString(s) }
26 func (e ErrorString) Temporary() bool {
30 func (e ErrorString) Timeout() bool {
56 func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err ErrorString)
57 func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err ErrorString)
240 var e ErrorString
    [all...]

Completed in 594 milliseconds

1 2