HomeSort by relevance Sort by last modified time
    Searched full:reason (Results 276 - 300 of 4406) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/lang/reflect/
GenericArrayType.java 36 * instantiated for some reason
  /libcore/luni/src/main/java/java/net/
UnknownHostException.java 38 * The detail message should generally contain the hostname and a reason for the failure,
  /libcore/luni/src/main/java/javax/security/auth/
DestroyFailedException.java 37 * A detail message that describes the reason for this exception.
  /packages/apps/Phone/src/com/android/phone/
GsmUmtsCallForwardOptions.java 58 mButtonCFU.setParentActivity(this, mButtonCFU.reason);
59 mButtonCFB.setParentActivity(this, mButtonCFB.reason);
60 mButtonCFNRy.setParentActivity(this, mButtonCFNRy.reason);
61 mButtonCFNRc.setParentActivity(this, mButtonCFNRc.reason);
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
EditorRelativeLayout.java 28 * The only reason we customize this layout is to listen to click events
  /external/openssl/crypto/ocsp/
ocsp_cl.c 253 * Note: the revtime and reason values are only set if the
258 int OCSP_single_get0_status(OCSP_SINGLERESP *single, int *reason,
272 if (reason)
275 *reason = ASN1_ENUMERATED_get(rev->revocationReason);
276 else *reason = -1;
289 int *reason,
300 i = OCSP_single_get0_status(single, reason, revtime, thisupd, nextupd);
  /external/qemu/
cpus.c 59 static void do_vm_stop(int reason)
65 vm_state_notify(0, reason);
236 void vm_stop(int reason)
238 do_vm_stop(reason);
535 void vm_stop(int reason)
541 qemu_system_vmstop_request(reason);
552 do_vm_stop(reason);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothEventManager.java 289 int reason = intent.getIntExtra(BluetoothDevice.EXTRA_REASON, local
292 showUnbondMessage(context, cachedDevice.getName(), reason);
299 * @param reason one of the error reasons from
302 private void showUnbondMessage(Context context, String name, int reason) {
305 switch(reason) {
322 Log.w(TAG, "showUnbondMessage: Not displaying any message for reason: " + reason);
  /external/chromium/chrome/browser/
chrome_browser_application_mac.mm 19 // -initWithName:reason:userInfo: for purposes of forcing a break in
25 reason:(NSString*)aReason
33 reason:(NSString*)aReason
36 DCHECK(_cmd == @selector(initWithName:reason:userInfo:));
61 [NSString stringWithFormat:@"%@ reason %@", aName, aReason];
188 @selector(initWithName:reason:userInfo:),
189 @selector(chromeInitWithName:reason:userInfo:));
222 // quitting but termination is aborted for some reason.
379 NSString* value = [NSString stringWithFormat:@"%@ reason %@",
380 [anException name], [anException reason]];
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_harness.cc 312 const std::string& reason) {
326 AwaitStatusChangeWithTimeout(kLiveSyncOperationTimeoutMs, reason);
328 return AwaitStatusChangeWithTimeout(kLiveSyncOperationTimeoutMs, reason);
332 AwaitStatusChangeWithTimeout(kLiveSyncOperationTimeoutMs, reason);
387 ProfileSyncServiceHarness* partner, const std::string& reason) {
403 return AwaitStatusChangeWithTimeout(kLiveSyncOperationTimeoutMs, reason);
408 const std::string& reason) {
415 new StateChangeTimeoutEvent(this, reason));
612 std::string reason = "Waiting for encryption."; local
616 if (!AwaitStatusChangeWithTimeout(kLiveSyncOperationTimeoutMs, reason)) {
    [all...]
  /frameworks/base/core/java/android/server/
BluetoothBondState.java 134 /** reason is ignored unless state == BOND_NOT_BONDED */
135 public synchronized void setBondState(String address, int state, int reason) {
136 if (DBG) Log.d(TAG, "setBondState " + "address" + " " + state + "reason: " + reason);
170 + " (" + reason + ")");
177 if (reason <= 0) {
178 Log.w(TAG, "setBondState() called to unbond device, but reason code is " +
179 "invalid. Overriding reason code with BOND_RESULT_REMOVED");
180 reason = BluetoothDevice.UNBOND_REASON_REMOVED;
182 intent.putExtra(BluetoothDevice.EXTRA_REASON, reason);
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.mm 228 void HostedNetscapePluginStream::cancelLoad(NPReason reason)
230 cancelLoad(errorForReason(reason));
260 NSError *HostedNetscapePluginStream::errorForReason(NPReason reason) const
262 if (reason == NPRES_DONE)
265 if (reason == NPRES_USER_BREAK)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
line-map.h 30 /* Reason for adding a line change with add_line_map (). LC_ENTER is
56 of the include stack have this set to -1. REASON is the reason for
66 ENUM_BITFIELD (lc_reason) reason : CHAR_BIT;
132 TO_FILE means standard input. If reason is LC_LEAVE, and
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
line-map.h 30 /* Reason for adding a line change with add_line_map (). LC_ENTER is
56 of the include stack have this set to -1. REASON is the reason for
66 ENUM_BITFIELD (lc_reason) reason : CHAR_BIT;
132 TO_FILE means standard input. If reason is LC_LEAVE, and
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
line-map.h 30 /* Reason for adding a line change with add_line_map (). LC_ENTER is
56 of the include stack have this set to -1. REASON is the reason for
66 ENUM_BITFIELD (lc_reason) reason : CHAR_BIT;
132 TO_FILE means standard input. If reason is LC_LEAVE, and
  /external/openssl/crypto/asn1/
x_crl.c 140 ASN1_ENUMERATED *reason;
165 reason = X509_REVOKED_get_ext_d2i(rev, NID_crl_reason,
167 if (!reason && (j != -1))
173 if (reason)
175 rev->reason = ASN1_ENUMERATED_get(reason);
176 ASN1_ENUMERATED_free(reason);
179 rev->reason = CRL_REASON_NONE;
472 if (rev->reason == CRL_REASON_REMOVE_FROM_CRL)
  /external/qemu/audio/
winaudio.c 66 const char* reason = NULL; local
70 case MMSYSERR_ALLOCATED: reason="specified resource is already allocated"; break;
71 case MMSYSERR_BADDEVICEID: reason="bad device id"; break;
72 case MMSYSERR_NODRIVER: reason="no driver is present"; break;
73 case MMSYSERR_NOMEM: reason="unable to allocate or lock memory"; break;
74 case WAVERR_BADFORMAT: reason="unsupported waveform-audio format"; break;
75 case WAVERR_SYNC: reason="device is synchronous"; break;
79 if (reason)
80 fprintf(stderr, "%s\n", reason);
  /external/apache-http/src/org/apache/http/message/
BasicLineFormatter.java 264 final String reason = statline.getReasonPhrase(); local
265 if (reason != null) {
266 len += reason.length();
273 buffer.append(' '); // keep whitespace even if reason phrase is empty
274 if (reason != null) {
275 buffer.append(reason);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
HandshakeProtocol.java 305 * @param reason
307 protected void fatalAlert(byte description, String reason) {
308 throw new AlertException(description, new SSLHandshakeException(reason));
315 * @param reason
318 protected void fatalAlert(byte description, String reason, Exception cause) {
319 throw new AlertException(description, new SSLException(reason, cause));
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/targetprep/
CtsRootDeviceSetup.java 92 "Failed to install %s on device %s. Reason: %s",
106 "Failed to install %s on device %s. Reason: %s",
  /external/apache-http/src/org/apache/http/
HttpResponseFactory.java 54 * for looking up a reason phrase to the status code, or
67 * for looking up a reason phrase if the status code
  /external/bzip2/
dlltest.c 126 perror("reason:");
149 perror("reason:");
  /external/chromium/chrome/common/extensions/docs/static/
hosting.html 82 The most common reason for failing to recognize an installable file
85 The second most common reason
  /external/tcpdump/
rx.h 103 u_int8_t reason; /* Reason for acknowledgement */ member in struct:rx_ackPacket
  /external/valgrind/main/drd/
drd_suppression.c 64 const char* const reason)
69 a1, a2 - a1, reason);

Completed in 1832 milliseconds

<<11121314151617181920>>