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

/frameworks/base/core/java/android/net/
H A DProxy.java36 public final class Proxy { class
38 private static final String TAG = "Proxy";
104 * @return Proxy (java.net) object containing the host name. If the
109 public static final java.net.Proxy getProxy(Context ctx, String url) {
115 List<java.net.Proxy> proxyList = proxySelector.select(uri);
121 return java.net.Proxy.NO_PROXY;
136 java.net.Proxy proxy = getProxy(ctx, null);
137 if (proxy == java.net.Proxy.NO_PROXY) return null;
154 java.net.Proxy proxy = getProxy(ctx, null);
155 if (proxy == java.net.Proxy
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DRestrictedLockUtils.java781 static Proxy sProxy = new Proxy();
784 static class Proxy { class in class:RestrictedLockUtils
/frameworks/av/include/private/media/
H A DAudioTrackShared.h134 friend class Proxy;
200 // Proxy for shared memory control block, to isolate callers from needing to know the details.
203 class Proxy : public RefBase { class in namespace:android
205 Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize, bool isOut,
207 virtual ~Proxy() { }
235 // Proxy seen by AudioTrack client and AudioRecord client
236 class ClientProxy : public Proxy {
353 // Proxy used by AudioTrack client, which also includes AudioFlinger::PlaybackThread::OutputTrack
454 // Proxy used by AudioRecord client
476 // Proxy use
[all...]
/frameworks/av/media/libaudioclient/
H A DAudioTrackShared.cpp59 Proxy::Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize, function in class:android::Proxy
71 : Proxy(cblk, buffers, frameCount, frameSize, isOut, clientInServer)
617 : Proxy(cblk, buffers, frameCount, frameSize, isOut, clientInServer),

Completed in 2419 milliseconds