HomeSort by relevance Sort by last modified time
    Searched defs:RemoteException (Results 1 - 25 of 42) sorted by null

1 2

  /external/javassist/src/main/javassist/tools/rmi/
RemoteException.java 19 * <code>RemoteException</code> represents any exception thrown
22 public class RemoteException extends RuntimeException {
23 public RemoteException(String msg) {
27 public RemoteException(Exception e) {
ObjectImporter.java 65 * into <code>RemoteException</code>. Since this exception is a subclass
71 * @see javassist.tools.rmi.RemoteException
202 throws RemoteException
258 throw new RemoteException(e);
261 throw new RemoteException(e);
264 throw new RemoteException(e);
270 throw new RemoteException(errmsg);
  /cts/tests/tests/os/src/android/os/cts/
RemoteExceptionTest.java 19 import android.os.RemoteException;
25 new RemoteException();
  /frameworks/base/core/java/android/os/
RemoteException.java 24 public class RemoteException extends AndroidException {
25 public RemoteException() {
29 public RemoteException(String message) {
CommonClock.java 24 import android.os.RemoteException;
109 * @throws android.os.RemoteException
112 throws RemoteException {
115 throw new RemoteException();
132 catch (RemoteException e) {
142 * the native service and will throw a {@link android.os.RemoteException} if any of its
166 * @throws android.os.RemoteException
169 throws RemoteException {
185 * @throws android.os.RemoteException
188 throws RemoteException {
    [all...]
CommonTimeConfig.java 23 import android.os.RemoteException;
61 * @throws android.os.RemoteException
64 throws RemoteException {
67 throw new RemoteException();
83 catch (RemoteException e) {
93 * disconnected from the native service and will throw a {@link android.os.RemoteException} if
115 * @throws android.os.RemoteException
118 throws RemoteException {
142 * @throws android.os.RemoteException
145 throws RemoteException {
    [all...]
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
RemoteException.java 22 public class RemoteException extends Exception {
23 public RemoteException(Throwable t) {
27 public RemoteException(String msg) {
31 public RemoteException(String msg, Throwable e) {
  /frameworks/base/core/java/android/provider/
SyncStateContract.java 26 import android.os.RemoteException;
70 * @throws RemoteException if there is a failure communicating with the remote
74 Account account) throws RemoteException {
80 throw new RemoteException();
100 * @throws RemoteException if there is a failure communicating with the remote
104 Account account, byte[] data) throws RemoteException {
113 Account account, byte[] data) throws RemoteException {
122 throws RemoteException {
129 Account account) throws RemoteException {
134 throw new RemoteException();
    [all...]
  /frameworks/base/services/core/java/com/android/server/
CountryDetectorService.java 34 import android.os.RemoteException;
113 public void addCountryListener(ICountryListener listener) throws RemoteException {
115 throw new RemoteException();
124 public void removeCountryListener(ICountryListener listener) throws RemoteException {
126 throw new RemoteException();
141 } catch (RemoteException e) {
163 } catch (RemoteException e) {
  /frameworks/base/services/core/java/com/android/server/am/
BroadcastQueue.java 48 import android.os.RemoteException;
273 ProcessRecord app) throws RemoteException {
277 throw new RemoteException();
484 boolean ordered, boolean sticky, int sendingUser) throws RemoteException {
498 } catch (RemoteException ex) {
509 throw new RemoteException("app.thread must not be null");
710 } catch (RemoteException e) {
    [all...]
ActiveServices.java 80 import android.os.RemoteException;
    [all...]
ActivityStackSupervisor.java 150 import android.os.RemoteException;
585 } catch (RemoteException e) {
    [all...]