/development/ndk/platforms/android-9/arch-mips/include/asm/ |
D | war.h | 27 #error Check setting of R4600_V1_INDEX_ICACHEOP_WAR for your platform 31 #error Check setting of R4600_V1_HIT_CACHEOP_WAR for your platform 35 #error Check setting of R4600_V2_HIT_CACHEOP_WAR for your platform 39 #error Check setting of R5432_CP0_INTERRUPT_WAR for your platform 42 #error Check setting of BCM1250_M3_WAR for your platform 46 #error Check setting of SIBYTE_1956_WAR for your platform 50 #error Check setting of MIPS4K_ICACHE_REFILL_WAR for your platform 54 #error Check setting of MIPS_CACHE_SYNC_WAR for your platform 57 #error Check setting of TX49XX_ICACHE_INDEX_INV_WAR for your platform 61 #error Check setting of RM9000_CDEX_SMP_WAR for your platform [all …]
|
D | byteorder.h | 37 #error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???"
|
/development/host/windows/usb/api/ |
D | adb_legacy_io_completion.cpp | 62 ULONG error = GetLastError(); in GetOvelappedIoResult() local 65 ((ERROR_IO_INCOMPLETE == error) || (ERROR_IO_PENDING == error))) { in GetOvelappedIoResult() 73 error = GetLastError(); in GetOvelappedIoResult() 75 ((ERROR_IO_INCOMPLETE != error) && (ERROR_IO_PENDING != error))) { in GetOvelappedIoResult()
|
D | adb_legacy_interface.cpp | 61 ULONG error = ok ? NO_ERROR : GetLastError(); in CreateHandle() local 65 if (NO_ERROR != error) { in CreateHandle() 66 SetLastError(error); in CreateHandle() 135 ULONG error = ret ? NO_ERROR : GetLastError(); in GetSerialNumber() local 139 if (NO_ERROR != error) { in GetSerialNumber() 140 SetLastError(error); in GetSerialNumber() 201 ULONG error = ret ? NO_ERROR : GetLastError(); in GetEndpointInformation() local 205 if (NO_ERROR != error) { in GetEndpointInformation() 206 SetLastError(error); in GetEndpointInformation()
|
D | adb_legacy_endpoint_object.cpp | 112 ULONG error = GetLastError(); in CommonAsyncReadWrite() local 113 if (!res && (ERROR_IO_PENDING != error)) { in CommonAsyncReadWrite() 118 SetLastError(error); in CommonAsyncReadWrite() 221 ULONG error = GetLastError(); in CreateHandle() local 224 SetLastError(error); in CreateHandle()
|
/development/host/windows/usb/winusb/ |
D | adb_winusb_io_completion.cpp | 70 ULONG error = GetLastError(); in GetOvelappedIoResult() local 73 ((ERROR_IO_INCOMPLETE == error) || (ERROR_IO_PENDING == error))) { in GetOvelappedIoResult() 81 error = GetLastError(); in GetOvelappedIoResult() 83 ((ERROR_IO_INCOMPLETE != error) && (ERROR_IO_PENDING != error))) { in GetOvelappedIoResult()
|
/development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/ |
D | RemotePlayer.java | 150 public void onError(String error, int code, Bundle data) { in play() argument 151 logError("play: failed", error, code); in play() 192 public void onError(String error, int code, Bundle data) { in getStatus() argument 193 logError("getStatus: failed", error, code); in getStatus() 220 public void onError(String error, int code, Bundle data) { in pause() 221 logError("pause: failed", error, code); in pause() 245 public void onError(String error, int code, Bundle data) { in resume() 246 logError("resume: failed", error, code); in resume() 273 public void onError(String error, int code, Bundle data) { in stop() 274 logError("stop: failed", error, code); in stop() [all …]
|
/development/build/tools/ |
D | mk_sources_zip.py | 61 def usage(error=None): argument 79 if error: 80 print >>sys.stderr, "Error:", error 88 error = None 95 error = str(e) 97 if error is None: 113 error = "Missing arguments: <source> <dest>" 120 error = "%s is not a file" % p.PROPS 122 error = "%s is not a directory" % p.SRC 124 if error: [all …]
|
D | mk_sdk_repo_xml.sh | 19 function error() { function 40 error "Missing tool: sha1sum (Linux: apt-get install coreutils; Mac: port install md5sha1sum)" 45 [[ -z "$OUT" ]] && error "Missing output.xml name." 50 [[ ! -f "$SCHEMA" ]] && error "Invalid XML schema name: $SCHEMA." 56 [[ -z "$XMLNS" ]] && error "Failed to find xmlns:sdk in $SCHEMA." 65 [[ -z "$ROOT" ]] && error "Failed to find root element in $SCHEMA." 332 [[ -z $TYPE ]] && error "Unknown archive type '$1'." 353 [[ ! -f "$SRC" ]] && error "Missing file for archive $TYPE/$OS: $SRC" 404 error "Failed to find source.properties or manifest.ini in $SRC" 407 [[ ! -f $PROPS ]] && error "Failed to extract $PROPS from $SRC"
|
/development/ndk/platforms/android-9/include/linux/ |
D | patchkey.h | 13 #error "patchkey.h included directly" 27 #error "could not determine byte order"
|
D | ftape.h | 37 __u8 error; member 39 } error; member
|
D | spinlock_types_up.h | 16 #error "please don't include this file directly"
|
D | hardirq.h | 28 #error HARDIRQ_BITS is too low! 47 #error PREEMPT_ACTIVE is too low!
|
D | spinlock_api_smp.h | 16 #error "please don't include this file directly"
|
/development/ndk/platforms/android-21/include/linux/ |
D | patchkey.h | 20 #error "patchkey.h included directly" 34 #error "could not determine byte order"
|
/development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/ |
D | MyGLRenderer.java | 143 int error; in checkGlError() local 144 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { in checkGlError() 145 Log.e(TAG, glOperation + ": glError " + error); in checkGlError() 146 throw new RuntimeException(glOperation + ": glError " + error); in checkGlError()
|
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/ |
D | Gles2ColoredTriangleList.java | 140 int error = GLES20.glGetError(); in checkGlError() local 141 if (error != GLES20.GL_NO_ERROR) { in checkGlError() 142 String errorString = GLU.gluErrorString(error); in checkGlError() 144 errorString = GLUtils.getEGLErrorString(error); in checkGlError() 146 String message = glOperation + " caused GL error 0x" + Integer.toHexString(error) + in checkGlError()
|
/development/scripts/ |
D | usb-reset-by-serial.py | 62 error("unable to open device %s: " 82 def error(msg): function 102 error("command failed (rc=%d): cmd was %s" % (mypipe.returncode, args)) 133 error("unable to locate device with serial number %s" % flag_serial)
|
/development/apps/Development/src/com/android/development/ |
D | Details.java | 129 TextView error = new TextView(Details.this); 130 error.setText("Showing old data.\nURL couldn't be requeried:\n" 132 error.setTextColor(0xffff0000); 133 error.setTextSize(11); 134 mLinearLayout.addView(error, 0, lazy());
|
/development/samples/browseable/MediaEffects/src/com.example.android.mediaeffects/ |
D | GLToolbox.java | 69 int error; in checkGlError() local 70 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { in checkGlError() 71 throw new RuntimeException(op + ": glError " + error); in checkGlError()
|
/development/samples/HelloEffects/src/com/example/android/mediafx/ |
D | GLToolbox.java | 73 int error; in checkGlError() local 74 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { in checkGlError() 75 throw new RuntimeException(op + ": glError " + error); in checkGlError()
|
/development/ndk/platforms/android-9/arch-arm/include/asm/ |
D | spinlock_types.h | 16 #error "please don't include this file directly"
|
D | smp.h | 21 #error "<asm-arm/smp.h> included in non-SMP build"
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | spinlock_types.h | 22 #error "please don't include this file directly"
|
/development/ndk/platforms/android-9/arch-arm/include/machine/ |
D | cpu-features.h | 73 # error ARMv4 is not supported, please use ARMv4T at a minimum 75 # error Unknown or unsupported ARM architecture
|