HomeSort by relevance Sort by last modified time
    Searched refs:why (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
terminalcommand.py 41 except AE.Error, why:
42 if why[0] != -600: # Terminal.app not yet running
  /external/mksh/src/
check.pl 589 $why = '';
593 $why .= "\ttest timed out (limit of $test{'time-limit'} seconds)\n";
609 $why .=
618 $why .= $tmp;
626 $why .= $tmp;
633 $why .= $tmp;
662 $why = "\tDescription"
664 . $why;
672 print $why if $verbose;
754 local($why) = ''
    [all...]
  /external/clang/tools/scan-build/
set-xcode-analyzer 56 except IOError, why:
57 print " (-) Cannot update file:", why, "\n"
58 except OSError, why:
59 print " (-) Cannot update file:", why, "\n"
  /external/kernel-headers/original/linux/
jbd.h 280 #define J_EXPECT(expr, why...) J_ASSERT(expr)
281 #define J_EXPECT_BH(bh, expr, why...) J_ASSERT_BH(bh, expr)
282 #define J_EXPECT_JH(jh, expr, why...) J_ASSERT_JH(jh, expr)
284 #define __journal_expect(expr, why...) \
290 printk(KERN_ERR why "\n"); \
294 #define J_EXPECT(expr, why...) __journal_expect(expr, ## why)
295 #define J_EXPECT_BH(bh, expr, why...) __journal_expect(expr, ## why)
296 #define J_EXPECT_JH(jh, expr, why...) __journal_expect(expr, ## why
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContextLifecycleNotifier.cpp 78 void ContextLifecycleNotifier::notifySuspendingActiveDOMObjects(ActiveDOMObject::ReasonForSuspension why)
85 (*iter)->suspend(why);
ScriptExecutionContext.cpp 160 void ScriptExecutionContext::suspendActiveDOMObjects(ActiveDOMObject::ReasonForSuspension why)
162 lifecycleNotifier()->notifySuspendingActiveDOMObjects(why);
164 m_reasonForSuspendingActiveDOMObjects = why;
  /external/chromium/testing/gmock/include/gmock/
gmock-spec-builders.h 174 ::std::ostream* what, ::std::ostream* why) = 0;
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardUpdateMonitorCallback.java 170 * @param why {@link WindowManagerPolicy#OFF_BECAUSE_OF_USER},
174 public void onScreenTurnedOff(int why) { }
  /frameworks/base/services/java/com/android/server/power/
Notifier.java 470 int why = WindowManagerPolicy.OFF_BECAUSE_OF_USER; local
473 why = WindowManagerPolicy.OFF_BECAUSE_OF_ADMIN;
476 why = WindowManagerPolicy.OFF_BECAUSE_OF_TIMEOUT;
480 EventLog.writeEvent(EventLogTags.POWER_SCREEN_STATE, 0, why, 0, 0);
482 mPolicy.screenTurnedOff(why);
  /art/runtime/
monitor.cc 392 bool interruptShouldThrow, ThreadState why) {
394 DCHECK(why == kTimedWaiting || why == kWaiting || why == kSleeping);
405 if (why == kTimedWaiting && (ms == 0 && ns == 0)) {
406 why = kWaiting;
409 WaitWithLock(self, ms, ns, interruptShouldThrow, why);
413 bool interruptShouldThrow, ThreadState why) {
446 self->TransitionFromRunnableToSuspended(why);
467 if (why == kWaiting)
    [all...]
monitor.h 87 bool interruptShouldThrow, ThreadState why)
139 void Wait(Thread* self, int64_t msec, int32_t nsec, bool interruptShouldThrow, ThreadState why)
141 void WaitWithLock(Thread* self, int64_t ms, int32_t ns, bool interruptShouldThrow, ThreadState why)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 364 except socket.error as why:
365 if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN):
376 except socket.error, why:
377 if why.args[0] == EWOULDBLOCK:
379 elif why.args[0] in _DISCONNECTED:
395 except socket.error, why:
397 if why.args[0] in _DISCONNECTED:
410 except socket.error, why:
411 if why.args[0] not in (ENOTCONN, EBADF):
trace.py 570 def globaltrace_trackcallers(self, frame, why, arg):
575 if why == 'call':
581 def globaltrace_countfuncs(self, frame, why, arg):
586 if why == 'call':
590 def globaltrace_lt(self, frame, why, arg):
596 if why == 'call':
613 def localtrace_trace_and_count(self, frame, why, arg):
614 if why == "line":
628 def localtrace_trace(self, frame, why, arg):
629 if why == "line"
    [all...]
shutil.py 104 except OSError, why:
106 if hasattr(errno, err) and why.errno == getattr(errno, err):
197 except EnvironmentError, why:
198 errors.append((srcname, dstname, str(why)))
201 except OSError, why:
202 if WindowsError is not None and isinstance(why, WindowsError):
206 errors.append((src, dst, str(why)))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 364 except socket.error as why:
365 if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN):
376 except socket.error, why:
377 if why.args[0] == EWOULDBLOCK:
379 elif why.args[0] in _DISCONNECTED:
395 except socket.error, why:
397 if why.args[0] in _DISCONNECTED:
410 except socket.error, why:
411 if why.args[0] not in (ENOTCONN, EBADF):
trace.py 570 def globaltrace_trackcallers(self, frame, why, arg):
575 if why == 'call':
581 def globaltrace_countfuncs(self, frame, why, arg):
586 if why == 'call':
590 def globaltrace_lt(self, frame, why, arg):
596 if why == 'call':
613 def localtrace_trace_and_count(self, frame, why, arg):
614 if why == "line":
628 def localtrace_trace(self, frame, why, arg):
629 if why == "line"
    [all...]
shutil.py 104 except OSError, why:
106 if hasattr(errno, err) and why.errno == getattr(errno, err):
197 except EnvironmentError, why:
198 errors.append((srcname, dstname, str(why)))
201 except OSError, why:
202 if WindowsError is not None and isinstance(why, WindowsError):
206 errors.append((src, dst, str(why)))
  /external/chromium_org/chrome/common/extensions/docs/examples/api/storage/stylizr/
popup.js 7 // See note in options.js for rationale on why not to use "sync".
  /external/zlib/src/examples/
fitblk.c 62 local void quit(char *why)
64 fprintf(stderr, "fitblk abort: %s\n", why);
  /dalvik/vm/
Thread.cpp 419 static const char* getSuspendCauseStr(SuspendCause why)
421 switch (why) {
447 static void lockThreadSuspend(const char* who, SuspendCause why)
481 self->threadId, who, getSuspendCauseStr(why));
493 self->threadId, who, getSuspendCauseStr(why));
    [all...]
Thread.h 376 void dvmSuspendAllThreads(SuspendCause why);
377 void dvmResumeAllThreads(SuspendCause why);
  /external/netperf/
netcpu_kstat10.c 100 print_unexpected_statistic_warning(char *who, char *what, char *why)
102 if (why) {
108 why,
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardServiceDelegate.java 223 public void onScreenTurnedOff(int why) {
225 mKeyguardService.onScreenTurnedOff(why);
227 mKeyguardState.offReason = why;
  /system/core/cpio/
mkbootfs.c 26 void die(const char *why, ...)
30 va_start(ap, why);
32 vfprintf(stderr, why, ap);
  /external/chromium_org/remoting/webapp/
third_party_host_permissions.js 13 * been granted that permission, it shows a dialog explaining why it is being
52 // In any case, we can use this dialog to explain to the user why we are

Completed in 1084 milliseconds

1 2 3 4 5