/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()
|
D | adb_winusb_endpoint_object.cpp | 144 ULONG error = GetLastError(); in CommonAsyncReadWrite() local 145 if (!res && (ERROR_IO_PENDING != error)) { in CommonAsyncReadWrite() 150 SetLastError(error); in CommonAsyncReadWrite()
|
/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)" 49 [[ -z "$OUT" ]] && error "Missing output.xml name." 54 [[ ! -f "$SCHEMA" ]] && error "Invalid XML schema name: $SCHEMA." 60 [[ -z "$XMLNS" ]] && error "Failed to find xmlns:sdk in $SCHEMA." 69 [[ -z "$ROOT" ]] && error "Failed to find root element in $SCHEMA." 336 [[ -z $TYPE ]] && error "Unknown archive type '$1'." 357 [[ ! -f "$SRC" ]] && error "Missing file for archive $TYPE/$OS: $SRC" 408 error "Failed to find source.properties or manifest.ini in $SRC" 411 [[ ! -f $PROPS ]] && error "Failed to extract $PROPS from $SRC"
|
D | windows_sdk.mk | 16 $(error Linux is required to create a Windows SDK) 19 $(error Need a unix2dos command. Please 'apt-get install tofrodos')
|
/development/vndk/snapshot/ |
D | check_gpl_license.py | 124 except subprocess.CalledProcessError as error: 125 logging.error('Error: {}'.format(error)) 154 except subprocess.CalledProcessError as error: 155 logging.error( 158 rev=revision, remote=self._remote_git, err=error)) 159 logging.error('Try --remote to manually set remote name') 285 except ValueError as error: 286 logging.error('Error: {}'.format(error))
|
D | update.py | 54 except Exception as error: 55 logging.error('Error: {}'.format(error)) 169 except ValueError as error: 170 logging.error('***CANNOT INSTALL VNDK SNAPSHOT***: {}'.format(error)) 277 except Exception as error: 278 logging.error('FAILED TO INSTALL SNAPSHOT: {}'.format(error))
|
/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/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/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/gsi/gsi_util/gsi_util/utils/ |
D | debugfs.py | 58 _, output, error = run_command( 63 if re.search('File not found', error):
|
/development/vndk/tools/vndk-compliance/ |
D | parse-and-fix-errors.sh | 30 cat log | grep "FAILED\|error:" > log.error 42 …cat log.error | grep -B1 "error: '$lib\/" | grep FAILED | awk 'BEGIN{FS="_intermediates"}{print $1…
|
/development/testrunner/ |
D | adb_interface.py | 157 error = "No such file or directory" 159 if error in output: 485 error = None 496 error = e 509 elif error is not None: 511 raise error
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
D | SmsMessagingDemo.java | 130 boolean error = true; in onCreate() 134 error = false; in onCreate() 155 statusView.setTextColor(error ? Color.RED : Color.GREEN); in onCreate()
|
/development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/ |
D | GLES20TriangleRenderer.java | 203 int error; in checkGlError() local 204 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { in checkGlError() 205 Log.e(TAG, op + ": glError " + error); in checkGlError() 206 throw new RuntimeException(op + ": glError " + error); in checkGlError()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | GLES20TriangleRenderer.java | 205 int error; in checkGlError() local 206 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { in checkGlError() 207 Log.e(TAG, op + ": glError " + error); in checkGlError() 208 throw new RuntimeException(op + ": glError " + error); in checkGlError()
|
/development/samples/browseable/FingerprintDialog/src/com.example.android.fingerprintdialog/ |
D | FingerprintUiHelper.java | 119 private void showError(CharSequence error) { in showError() argument 121 mErrorTextView.setText(error); in showError()
|
/development/tools/mkstubs/src/com/android/mkstubs/ |
D | Main.java | 252 private void usage(String error) { in usage() argument 253 if (error != null) { in usage() 254 System.out.println("ERROR: " + error); in usage()
|