Searched refs:re (Results 1 - 25 of 112) sorted by relevance

12345

/frameworks/base/core/java/android/os/
H A DUserManager.java463 } catch (RemoteException re) {
464 Log.w(TAG, "Could not get user name", re);
492 } catch (RemoteException re) {
493 Log.w(TAG, "Could not check if user is limited ", re);
564 } catch (RemoteException re) {
565 Log.w(TAG, "Could not get user info", re);
586 } catch (RemoteException re) {
587 Log.w(TAG, "Could not get user restrictions", re);
620 } catch (RemoteException re) {
621 Log.w(TAG, "Could not set user restrictions", re);
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleProfiling.java47 * Register for the messages we're interested in.
116 } catch (RuntimeException re) {
117 return createFailChunk(1, re.getMessage());
130 } catch (RuntimeException re) {
132 + re.getMessage());
157 } catch (RuntimeException re) {
158 return createFailChunk(1, re.getMessage());
173 } catch (RuntimeException re) {
175 + re.getMessage());
176 return createFailChunk(1, re
[all...]
/frameworks/base/core/java/android/app/
H A DUiAutomation.java197 } catch (RemoteException re) {
198 throw new RuntimeException("Error while connecting UiAutomation", re);
242 } catch (RemoteException re) {
243 throw new RuntimeException("Error while disconnecting UiAutomation", re);
296 } catch (RemoteException re) {
297 Log.w(LOG_TAG, "Error while calling performGlobalAction", re);
345 } catch (RemoteException re) {
346 Log.w(LOG_TAG, "Error while getting AccessibilityServiceInfo", re);
372 } catch (RemoteException re) {
373 Log.w(LOG_TAG, "Error while setting AccessibilityServiceInfo", re);
[all...]
H A DUiAutomationConnection.java136 } catch (RemoteException re) {
295 } catch (RemoteException re) {
296 throw new IllegalStateException("Error while registering UiTestAutomationService.", re);
308 } catch (RemoteException re) {
310 re);
321 } catch (RemoteException re) {
337 } catch (RemoteException re) {
/frameworks/webview/chromium/tools/
H A Dmerge_common.py19 import re namespace
161 conflicts_deleted_by_us = re.findall(r'^(?:DD|DU) ([^\n]+)$', status,
162 flags=re.MULTILINE)
171 # into a directory we don't delete. Let them get re-added; they will get
172 # re-deleted if they are still in a directory we delete.
173 conflicts_renamed_by_them = re.findall(r'^UA ([^\n]+)$', status,
174 flags=re.MULTILINE)
182 conflicts = re.findall(r'^((DD|AU|UD|UA|DU|AA|UU) [^\n]+)$', status,
183 flags=re.MULTILINE)
H A Drun_webview_cts.py21 import re namespace
75 passes = set(re.findall(r'.*: (.*) PASS', stdout))
76 failures = set(re.findall(r'.*: (.*) FAIL', stdout))
112 print ('More than 5 new passes? Either you''re running webview classic, or '
H A Dmemreport.py27 import re namespace
69 regexps[region_filter] = re.compile(region_filter)
/frameworks/base/core/java/android/print/
H A DPrintManager.java229 } catch (RemoteException re) {
230 Log.e(LOG_TAG, "Error getting a print job info:" + printJobId, re);
255 } catch (RemoteException re) {
256 Log.e(LOG_TAG, "Error adding print job state change listener", re);
285 } catch (RemoteException re) {
286 Log.e(LOG_TAG, "Error removing print job state change listener", re);
307 } catch (RemoteException re) {
308 Log.e(LOG_TAG, "Error getting print job", re);
335 } catch (RemoteException re) {
336 Log.e(LOG_TAG, "Error getting print jobs", re);
[all...]
H A DPrinterDiscoverySession.java70 } catch (RemoteException re) {
71 Log.e(LOG_TAG, "Error creating printer discovery session", re);
84 } catch (RemoteException re) {
85 Log.e(LOG_TAG, "Error starting printer discovery", re);
99 } catch (RemoteException re) {
100 Log.e(LOG_TAG, "Error stopping printer discovery", re);
112 } catch (RemoteException re) {
113 Log.e(LOG_TAG, "Error starting printer state tracking", re);
124 } catch (RemoteException re) {
125 Log.e(LOG_TAG, "Error stopping printer state tracking", re);
[all...]
/frameworks/base/services/print/java/com/android/server/print/
H A DRemotePrintSpooler.java117 } catch (RemoteException re) {
118 Slog.e(LOG_TAG, "Error getting print jobs.", re);
141 } catch (RemoteException re) {
142 Slog.e(LOG_TAG, "Error creating print job.", re);
164 } catch (RemoteException re) {
165 Slog.e(LOG_TAG, "Error writing print job data.", re);
191 } catch (RemoteException re) {
192 Slog.e(LOG_TAG, "Error getting print job info.", re);
216 } catch (RemoteException re) {
217 Slog.e(LOG_TAG, "Error setting print job state.", re);
[all...]
H A DRemotePrintService.java209 } catch (RemoteException re) {
210 Slog.e(LOG_TAG, "Error canceling a pring job.", re);
237 } catch (RemoteException re) {
238 Slog.e(LOG_TAG, "Error announcing queued pring job.", re);
264 } catch (RemoteException re) {
265 Slog.e(LOG_TAG, "Error creating printer discovery session.", re);
297 } catch (RemoteException re) {
298 Slog.e(LOG_TAG, "Error destroying printer dicovery session.", re);
334 } catch (RemoteException re) {
335 Slog.e(LOG_TAG, "Error starting printer dicovery.", re);
[all...]
/frameworks/base/tests/SoundTriggerTests/src/android/hardware/soundtrigger/
H A DSoundTriggerTest.java213 RecognitionEvent re = new RecognitionEvent(SoundTrigger.RECOGNITION_STATUS_SUCCESS, 1,
218 re.writeToParcel(parcel, 0);
225 assertEquals(re, unparceled);
230 RecognitionEvent re = new RecognitionEvent(SoundTrigger.RECOGNITION_STATUS_FAILURE, 1,
235 re.writeToParcel(parcel, 0);
242 assertEquals(re, unparceled);
249 RecognitionEvent re = new RecognitionEvent(SoundTrigger.RECOGNITION_STATUS_ABORT, 1,
254 re.writeToParcel(parcel, 0);
261 assertEquals(re, unparceled);
268 RecognitionEvent re
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityManager.java325 } catch (RemoteException re) {
326 Log.e(LOG_TAG, "Error during sending " + event + " ", re);
355 } catch (RemoteException re) {
356 Log.e(LOG_TAG, "Error while requesting interrupt from all services. ", re);
401 } catch (RemoteException re) {
402 Log.e(LOG_TAG, "Error while obtaining the installed AccessibilityServices. ", re);
443 } catch (RemoteException re) {
444 Log.e(LOG_TAG, "Error while obtaining the installed AccessibilityServices. ", re);
586 } catch (RemoteException re) {
587 Log.e(LOG_TAG, "Error while adding an accessibility interaction connection. ", re);
[all...]
H A DAccessibilityInteractionClient.java200 } catch (RemoteException re) {
201 Log.e(LOG_TAG, "Error while calling remote getWindow", re);
240 } catch (RemoteException re) {
241 Log.e(LOG_TAG, "Error while calling remote getWindows", re);
303 } catch (RemoteException re) {
305 + " findAccessibilityNodeInfoByAccessibilityId", re);
348 } catch (RemoteException re) {
350 + " findAccessibilityNodeInfoByViewIdInActiveWindow", re);
394 } catch (RemoteException re) {
396 + " findAccessibilityNodeInfosByViewText", re);
[all...]
/frameworks/base/core/java/android/printservice/
H A DPrinterDiscoverySession.java116 } catch (RemoteException re) {
117 Log.e(LOG_TAG, "Error sending added printers", re);
192 } catch (RemoteException re) {
193 Log.e(LOG_TAG, "Error sending added printers", re);
253 } catch (RemoteException re) {
254 Log.e(LOG_TAG, "Error sending removed printers", re);
295 } catch (RemoteException re) {
296 Log.e(LOG_TAG, "Error sending added printers", re);
315 } catch (RemoteException re) {
316 Log.e(LOG_TAG, "Error sending removed printers", re);
[all...]
H A DPrintJob.java79 } catch (RemoteException re) {
80 Log.e(LOG_TAG, "Couldn't get info for job: " + mCachedInfo.getId(), re);
298 } catch (RemoteException re) {
299 Log.e(LOG_TAG, "Error setting tag for job: " + mCachedInfo.getId(), re);
381 // we may not be able to re-fetch it later if the job gets
387 } catch (RemoteException re) {
388 Log.e(LOG_TAG, "Error setting the state of job: " + mCachedInfo.getId(), re);
H A DPrintDocument.java84 } catch (RemoteException re) {
85 Log.e(LOG_TAG, "Error calling getting print job data!", re);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothPan.java136 } catch (RemoteException re) {
137 Log.w(TAG,"Unable to register BluetoothStateChangeCallback",re);
163 } catch (RemoteException re) {
164 Log.w(TAG,"Unable to unregister BluetoothStateChangeCallback",re);
173 } catch (Exception re) {
174 Log.e(TAG,"",re);
200 } catch (Exception re) {
201 Log.e(TAG,"",re);
H A DBluetoothA2dpSink.java140 } catch (Exception re) {
141 Log.e(TAG,"",re);
151 } catch (Exception re) {
152 Log.e(TAG,"",re);
207 } catch (Exception re) {
208 Log.e(TAG,"",re);
H A DBluetoothAvrcpController.java81 } catch (Exception re) {
82 Log.e(TAG,"",re);
92 } catch (Exception re) {
93 Log.e(TAG,"",re);
149 } catch (Exception re) {
150 Log.e(TAG,"",re);
H A DBluetoothPbap.java122 } catch (Exception re) {
123 Log.e(TAG,"",re);
133 } catch (Exception re) {
134 Log.e(TAG,"",re);
200 } catch (Exception re) {
201 Log.e(TAG,"",re);
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java1601 * for typical HTTP proxies - they are generally network dependent. However if you're
1877 } catch (RemoteException re) {
1878 Log.w(TAG, "Failed talking with device policy service", re);
1895 } catch (RemoteException re) {
1896 Log.w(TAG, "Failed talking with device policy service", re);
1913 } catch (RemoteException re) {
1914 Log.w(TAG, "Failed talking with device policy service", re);
2269 } catch (RemoteException re) {
2293 } catch (RemoteException re) {
2321 } catch (RemoteException re) {
[all...]
/frameworks/base/tools/aidl/
H A DAndroid.mk5 # This tool is prebuilt if we're doing an app-only build.
/frameworks/base/core/java/com/android/server/backup/
H A DSystemBackupAgent.java83 } catch (RemoteException re) {
84 Slog.e(TAG, "Couldn't get wallpaper name\n" + re);
130 } catch (RemoteException re) {
131 Slog.e(TAG, "Couldn't restore settings\n" + re);
177 } catch (RemoteException re) {
178 Slog.e(TAG, "Couldn't restore settings\n" + re);
/frameworks/base/services/core/java/com/android/server/pm/
H A DLauncherAppsService.java379 } catch (RemoteException re) {
380 Slog.d(TAG, "Callback failed ", re);
398 } catch (RemoteException re) {
399 Slog.d(TAG, "Callback failed ", re);
417 } catch (RemoteException re) {
418 Slog.d(TAG, "Callback failed ", re);
436 } catch (RemoteException re) {
437 Slog.d(TAG, "Callback failed ", re);
455 } catch (RemoteException re) {
456 Slog.d(TAG, "Callback failed ", re);
[all...]

Completed in 287 milliseconds

12345