Searched defs:Proxy (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/os/storage/
H A DIMountShutdownObserver.java52 return new IMountShutdownObserver.Stub.Proxy(obj);
79 private static class Proxy implements IMountShutdownObserver { class in class:IMountShutdownObserver.Stub
82 Proxy(IBinder remote) { method in class:IMountShutdownObserver.Stub.Proxy
H A DIObbActionListener.java53 return new IObbActionListener.Stub.Proxy(obj);
84 private static class Proxy implements IObbActionListener { class in class:IObbActionListener.Stub
87 Proxy(IBinder remote) { method in class:IObbActionListener.Stub.Proxy
H A DIMountServiceListener.java53 return new IMountServiceListener.Stub.Proxy(obj);
127 private static class Proxy implements IMountServiceListener { class in class:IMountServiceListener.Stub
130 Proxy(IBinder remote) { method in class:IMountServiceListener.Stub.Proxy
H A DIMountService.java37 private static class Proxy implements IMountService { class in class:IMountService.Stub
40 Proxy(IBinder remote) { method in class:IMountService.Stub.Proxy
1344 return new IMountService.Stub.Proxy(obj);
/frameworks/base/core/java/android/net/
H A DProxy.java36 public final class Proxy { class
38 private static final String TAG = "Proxy";
103 * @return Proxy (java.net) object containing the host name. If the
108 public static final java.net.Proxy getProxy(Context ctx, String url) {
114 List<java.net.Proxy> proxyList = proxySelector.select(uri);
120 return java.net.Proxy.NO_PROXY;
134 java.net.Proxy proxy = getProxy(ctx, null);
135 if (proxy == java.net.Proxy.NO_PROXY) return null;
151 java.net.Proxy proxy = getProxy(ctx, null);
152 if (proxy == java.net.Proxy
[all...]
/frameworks/av/include/private/media/
H A DAudioTrackShared.h129 friend class Proxy;
190 // Proxy for shared memory control block, to isolate callers from needing to know the details.
193 class Proxy : public RefBase { class in namespace:android
195 Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize, bool isOut,
197 virtual ~Proxy() { }
223 // Proxy seen by AudioTrack client and AudioRecord client
224 class ClientProxy : public Proxy {
315 // Proxy used by AudioTrack client, which also includes AudioFlinger::PlaybackThread::OutputTrack
411 // Proxy used by AudioRecord client
423 // Proxy use
[all...]
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp57 Proxy::Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize, function in class:android::Proxy
69 : Proxy(cblk, buffers, frameCount, frameSize, isOut, clientInServer), mEpoch(0)
595 : Proxy(cblk, buffers, frameCount, frameSize, isOut, clientInServer),

Completed in 1011 milliseconds