HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 51 - 75 of 2048) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/jetty/src/java/org/eclipse/jetty/io/
EofException.java 36 public EofException(String reason)
38 super(reason);
  /frameworks/base/core/java/android/hardware/hdmi/
IHdmiVendorCommandListener.aidl 27 void onControlStateChanged(boolean enabled, int reason);
  /frameworks/base/core/java/android/os/
IDeviceIdleController.aidl 37 void addPowerSaveTempWhitelistApp(String name, long duration, int userId, String reason);
38 long addPowerSaveTempWhitelistAppForMms(String name, int userId, String reason);
39 long addPowerSaveTempWhitelistAppForSms(String name, int userId, String reason);
40 void exitIdle(String reason);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallForwardInfo.java 28 public int reason; /* from TS 27.007 7.11 "reason" */ field in class:CallForwardInfo
37 + " reason: " + reason
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLException.java 48 * @param reason describes the problem.
50 public SSLException(String reason)
52 super(reason);
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testbase.py 5 name, reason = self.args
7 (self.__class__.__name__, name, reason))
10 def broken(reason, *exceptions):
20 raise BrokenTest(test_method.__name__, reason)
23 replacement.todo = reason
  /external/llvm/include/llvm/Support/
ErrorHandling.h 27 const std::string& reason,
72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason,
74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason,
76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason,
78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason,
  /libcore/ojluni/src/main/java/java/net/
URISyntaxException.java 47 * Constructs an instance from the given input string, reason, and error
51 * @param reason A string explaining why the input could not be parsed
56 * If either the input or reason strings are <tt>null</tt>
61 public URISyntaxException(String input, String reason, int index) {
62 super(reason);
63 if ((input == null) || (reason == null))
72 * Constructs an instance from the given input string and reason. The
76 * @param reason A string explaining why the input could not be parsed
79 * If either the input or reason strings are <tt>null</tt>
81 public URISyntaxException(String input, String reason) {
    [all...]
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
GuardingProfile.java 43 protected void onMark(double totalMillis, double lastMillis, String reason) {
45 mGuardWriter.write(format(totalMillis, "GUARD", lastMillis, reason));
47 mVerboseWriter.write(format(totalMillis, "GUARD", lastMillis, reason));
61 protected void onStop(double totalMillis, double lastMillis, String reason) {
62 onMark(totalMillis, lastMillis, reason);
ProfileBase.java 53 public final void mark(String reason) {
55 onMark(getTotalMillis(time), getTimeFromLastMillis(time), reason); local
67 public final void stop(String reason) {
69 onStop(getTotalMillis(time), getTimeFromLastMillis(time), reason); local
86 * and a string reason at the end.
88 protected final String format(double totalMillis, String event, String reason) {
94 reason);
99 * a time since last event, and a string reason.
101 protected final String format(double totalMillis, String event, double lastMillis, String reason) {
108 reason);
    [all...]
  /external/v8/tools/
trace-maps-processor.py 39 def __init__(self, from_map, to_map, reason):
42 self.reason = reason
63 def AddTransition(from_map, to_map, reason):
72 old_reason = targets[to_map].reason
76 if reason in []:
77 targets[to_map].reason = reason
80 print("// warning: already have a transition from %s to %s, reason: %s" %
81 (from_map, to_map, targets[to_map].reason))
110 reason = "%s: %s" % (event, words[7]) variable
113 reason = "%s: %s" % (event, words[7]) variable
115 reason = "%s_%s" % (reason, words[8]) variable
117 reason = event variable
162 reason = transitions[s][t].reason variable
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_flush.c 48 const char *reason)
55 lp_setup_flush(llvmpipe->setup, fence, reason);
79 const char *reason )
82 llvmpipe_flush(pipe, &fence, reason);
105 const char *reason)
121 llvmpipe_finish(pipe, reason);
127 llvmpipe_flush(pipe, NULL, reason);
  /packages/services/Telephony/src/com/android/phone/settings/
CallForwardInfoUtil.java 38 * Returns the first CallForwardInfo in infos which has the specified reason.
40 * @param reason The reason we want to find a CallForwardInfo for.
42 public static CallForwardInfo infoForReason(CallForwardInfo[] infos, int reason) {
49 if (infos[i].reason == reason) {
83 info.reason,
92 * object which disables the specified reason.
94 public static CallForwardInfo getCallForwardInfo(CallForwardInfo[] infos, int reason) {
104 // If there is no info, create a CallForwardInfo to disable this reason
    [all...]
  /art/runtime/
java_vm_ext_test.cc 88 const char* reason = __PRETTY_FUNCTION__; local
92 nullptr), reason);
94 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
100 const char* reason = __PRETTY_FUNCTION__; local
104 nullptr), reason);
106 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
113 const char* reason = __PRETTY_FUNCTION__; local
116 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
117 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, PTHREAD_STACK_MIN), reason);
119 nullptr), reason);
    [all...]
  /system/nativepower/client/
power_manager_client.cc 30 // Returns the string corresponding to |reason|. Values are hardcoded in
32 String16 ShutdownReasonToString16(ShutdownReason reason) {
33 switch (reason) {
39 LOG(ERROR) << "Unknown shutdown reason " << static_cast<int>(reason);
44 // Returns the string corresponding to |reason|. Values are hardcoded in
46 String16 RebootReasonToString16(RebootReason reason) {
47 switch (reason) {
53 LOG(ERROR) << "Unknown reboot reason " << static_cast<int>(reason);
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleDeskClockApiCalls.java 127 final String reason; local
133 reason = getString(R.string.stopwatch_started);
139 reason = getString(R.string.stopwatch_paused);
146 reason = getString(R.string.stopwatch_reset);
152 reason = getString(R.string.stopwatch_isnt_running);
156 reason = getString(R.string.stopwatch_lapped);
165 Voice.notifyFailure(this, reason);
167 Voice.notifySuccess(this, reason);
169 LogUtils.i(reason);
189 String reason = null local
268 final String reason; local
    [all...]
  /device/google/dragon/recovery/updater/
recovery_ui.cpp 42 extern char *reason;
50 if (reason) {
56 if (!strcmp(reason, "fastboot_oem_unlock")) {
59 } else if (!strcmp(reason, "fastboot_oem_lock")) {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRuntimeException.h 41 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason;
42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
47 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRuntimeException.h 41 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason;
42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
47 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRuntimeException.h 41 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason;
42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
47 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/dhcpcd-6.8.2/
rpc-stub.c 44 rpc_signal_status(const char *reason)
  /external/protobuf/java/src/main/java/com/google/protobuf/
RpcController.java 91 * Causes {@code failed()} to return true on the client side. {@code reason}
97 void setFailed(String reason);
  /external/valgrind/include/vki/
vki-xen-schedop.h 42 unsigned int reason; member in struct:vki_xen_remote_shutdown
  /development/host/windows/usb/winusb/
AdbWinUsbApi.cpp 30 DWORD reason,
32 return _AtlModule.DllMain(reason, reserved);
  /external/apache-http/src/org/apache/http/
HttpResponse.java 73 * The reason phrase will be determined based on the current
82 * Sets the status line of this response with a reason phrase.
86 * @param reason the reason phrase, or <code>null</code> to omit
88 void setStatusLine(ProtocolVersion ver, int code, String reason);
95 * The reason phrase will be updated according to the new status code,
112 * Updates the status line of this response with a new reason phrase.
116 * @param reason the new reason phrase as a single-line string, or
117 * <code>null</code> to unset the reason phras
    [all...]

Completed in 2964 milliseconds

1 23 4 5 6 7 8 91011>>