HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 1501 - 1525 of 3032) sorted by null

<<61626364656667686970>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mhlib.py 11 mh.error(format, ...) # print error message -- can be overridden
27 f.error(format, ...) # same as mh.error(format, ...)
87 __all__ = ["MH","Error","Folder","Message"]
91 class Error(Exception):
111 if not os.path.isdir(path): raise Error, 'MH() path not found'
118 def error(self, msg, *args): member in class:MH
119 """Routine to print an error. May be overridden by a derived class."""
120 sys.stderr.write('MH error: %s\n' % (msg % args)
256 def error(self, *args): member in class:Folder
    [all...]
subprocess.py 15 input/output/error pipes, and obtain their return codes. This module
71 input, standard output and standard error file handles, respectively.
203 provides error output from the child process. Otherwise, it is
427 error = IOError variable in class:.pywintypes
559 To capture standard error in the result, use stderr=STDOUT.
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ChooseAssetTypePage.java 202 String error = null; local
205 error = "Please select an Android project.";
209 error = "Please enter a name";
213 error = validator.isValid(outputName);
217 setPageComplete(error == null);
218 if (error != null) {
219 setMessage(error, IMessageProvider.ERROR);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SdkSelectionPage.java 401 String error = null; local
404 error = "The SDK is still loading; please wait.";
407 if (error == null && mValues.target == null) {
408 error = "An SDK Target must be specified.";
411 if (error == null && mValues.mode == Mode.SAMPLE) {
414 error = "This target has no samples. Please select another target.";
418 // -- update UI & enable finish if there's no error
419 setPageComplete(error == null);
420 if (error != null) {
421 setMessage(error, IMessageProvider.ERROR)
    [all...]
  /system/core/liblog/
log_read_kern.c 143 int error; member in struct:logger_list
508 int error = 0, ret = 0; local
517 logger_list->error = EPERM;
526 error = ENODEV;
540 if (logger_list->error) { /* implies we are also in a flush state */
547 error = ENOMEM;
559 while (!ret && !error) {
568 error = errno;
570 error = EAGAIN;
620 error = EIO
    [all...]
  /system/extras/librank/
librank.c 219 int error; local
320 error = pm_kernel_create(&ker);
321 if (error) {
322 fprintf(stderr, "Error initializing kernel interface -- "
327 error = pm_kernel_pids(ker, &pids, &num_procs);
328 if (error) {
329 fprintf(stderr, "Error listing processes.\n");
334 error = pm_process_create(ker, pids[i], &proc);
335 if (error) {
342 error = pm_process_maps(proc, &maps, &num_maps)
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-embedder-3.2.1.jar 
  /art/runtime/
class_linker_test.cc 394 bool error = false; local
405 LOG(ERROR) << "Class size mismatch:"
409 error = true;
415 LOG(ERROR) << "Field count mismatch:"
419 error = true;
426 error = true;
429 if (error) {
435 LOG(ERROR) << "JAVA FIELD ORDER MISMATCH NEXT LINE:";
437 LOG(ERROR) << "Java field order:"
448 error = true
    [all...]
  /art/runtime/jdwp/
jdwp_event.cc 184 * not be added to the list, and an appropriate error will be returned.
334 // Failure to find the event isn't really an error. For instance, it looks like Eclipse will
794 JdwpError error = Dbg::GetThreadName(thread_id, &thread_name); local
795 if (error != JDWP::ERR_NONE) {
    [all...]
jdwp_handler.cc 114 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id, local
117 if (error == JDWP::ERR_NONE) {
122 return error;
145 * Given a class JNI signature (e.g. "Ljava/lang/Error;"), return the
879 JDWP::JdwpError error = Dbg::StringToUtf8(stringObject, &str); local
880 if (error != JDWP::ERR_NONE) {
881 return error;
899 JdwpError error = Dbg::GetThreadName(thread_id, &name); local
900 if (error != ERR_NONE) {
901 return error;
956 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus); local
991 JdwpError error = Dbg::GetThreadFrameCount(thread_id, &actual_frame_count); local
    [all...]
  /bionic/libc/dns/resolv/
res_send.c 281 * -1 : format error
318 * -1 : format error
936 * All is well, or the error is fatal. Signal that the
942 /* return -1 on error (errno set), 0 on success */
984 int n, error; local
1021 " %d retrying_select got error %d\n",sock, n);
1026 len = sizeof(error);
1027 if (getsockopt(sock, SOL_SOCKET, SO_ERROR, &error, &len) < 0 || error) {
1028 errno = error;
    [all...]
  /bionic/libc/kernel/uapi/linux/
blktrace_api.h 120 __u16 error; member in struct:blk_io_trace
netlink.h 105 int error; member in struct:nlmsgerr
  /cts/tests/tests/graphics/src/android/opengl/cts/
CompressedTextureSurfaceView.java 414 int error; local
415 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
416 Log.e(TAG, op + ": glError " + error);
417 throw new RuntimeException(op + ": glError " + error);
  /cts/tests/tests/hardware/src/android/hardware/multiprocess/
ErrorLoggingService.java 51 * Service for collecting error messages from other processes.
54 * Used by CTS for multi-process error logging.
60 * Receive all currently logged error strings in replyTo Messenger.
65 * Append a new error string to the log maintained in this service.
75 * A list of strings containing all error messages reported to this service.
170 LogEvent error = b.getParcelable(LOG_EVENT); local
171 mErrorLog.add(error);
263 * Implementation of Future to use when retrieving error messages from service.
374 Log.e(TAG, "Could not request another error report, too many requests queued.");
433 Log.e(TAG, "Waiting for error service interrupted: " + e)
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
SurfaceTextureRenderer.java 291 int error; local
292 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
293 Log.e(TAG, op + ": glError " + error);
294 throw new RuntimeException(op + ": glError " + error);
  /development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 270 int error; local
271 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
272 Log.e(TAG, op + ": glError " + error);
273 throw new RuntimeException(op + ": glError " + error);
  /development/ndk/platforms/android-21/include/linux/
blktrace_api.h 120 __u16 error; member in struct:blk_io_trace
netlink.h 105 int error; member in struct:nlmsgerr
  /development/ndk/platforms/android-21/samples/native-codec/src/com/example/nativecodec/
MyGLSurfaceView.java 286 int error; local
287 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
288 Log.e(TAG, op + ": glError " + error);
289 throw new RuntimeException(op + ": glError " + error);
  /development/ndk/platforms/android-3/include/linux/
bio.h 158 int error; member in struct:bio_pair
  /development/ndk/platforms/android-9/arch-mips/include/asm/xtalk/
xwidget.h 134 unsigned error:1; member in struct:__anon2529
  /external/aac/libAACenc/src/
bitenc.cpp 1001 AAC_ENCODER_ERROR error = AAC_ENC_OK; local
    [all...]
  /external/aac/libMpegTPDec/src/
tpdec_lib.cpp 373 * \return error code.
399 throw an error only if too many bits where read. */
452 * \return error code
780 is considered a synchronisation error. */
831 /* In case of ECD and sync error, do not rewind anywhere. */
846 /* Ignore error here itentionally. */
895 /* Detect pointless TRANSPORTDEC_NOT_ENOUGH_BITS error case, were the bit buffer is already full,
926 * to a current synchronization error in case of constant average bit rate.
932 TRANSPORTDEC_ERROR error = TRANSPORTDEC_OK; local
940 error = synchronization(hTp, &headerBits)
1169 TRANSPORTDEC_ERROR error = TRANSPORTDEC_OK; local
    [all...]
  /external/aac/libSBRenc/src/
ps_encode.cpp 173 FDK_PSENC_ERROR error = PSENC_OK; local
176 error = PSENC_INVALID_HANDLE;
210 return error;
310 /* mean error criterion */
351 INT error = 0; local
365 /* normalize error to number of envelopes, ps bands
394 bitsIidFreq = FDKsbrEnc_EncodeIid(NULL, iidIdxCoarse[0], NULL, psBands, PS_IID_RES_COARSE, PS_DELTA_FREQ, &error);
400 bitsIidTime = FDKsbrEnc_EncodeIid(NULL, iidIdxCoarse[0], psData->iidIdxLast, psBands, PS_IID_RES_COARSE, PS_DELTA_TIME, &error);
415 bitsIidFreq = FDKsbrEnc_EncodeIid(NULL, iidIdxCoarse[env], NULL, psBands, PS_IID_RES_COARSE, PS_DELTA_FREQ, &error);
416 bitsIidTime = FDKsbrEnc_EncodeIid(NULL, iidIdxCoarse[env], iidIdxCoarse[env-1], psBands, PS_IID_RES_COARSE, PS_DELTA_TIME, &error);
585 INT error = 0; local
757 FDK_PSENC_ERROR error = PSENC_OK; local
781 FDK_PSENC_ERROR error = PSENC_OK; local
818 FDK_PSENC_ERROR error = PSENC_OK; local
848 FDK_PSENC_ERROR error = PSENC_OK; local
    [all...]

Completed in 789 milliseconds

<<61626364656667686970>>