Searched defs:proxy (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
H A DProxyOutputStream.java37 * @param proxy the OutputStream to delegate to
39 public ProxyOutputStream(OutputStream proxy) { argument
40 super(proxy);
41 // the proxy is stored in a protected superclass variable named 'out'
H A DProxyWriter.java39 * @param proxy the Writer to delegate to
41 public ProxyWriter(Writer proxy) { argument
42 super(proxy);
43 // the proxy is stored in a protected superclass variable named 'out'
/packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
H A DProxyInputStream.java40 * @param proxy the InputStream to delegate to
42 public ProxyInputStream(InputStream proxy) { argument
43 super(proxy);
44 // the proxy is stored in a protected superclass variable named 'in'
H A DProxyReader.java40 * @param proxy the Reader to delegate to
42 public ProxyReader(Reader proxy) { argument
43 super(proxy);
44 // the proxy is stored in a protected superclass variable named 'in'
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DA2dpProfile.java53 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
54 mService = (BluetoothA2dp) proxy;
H A DHeadsetProfile.java59 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
60 mService = (BluetoothHeadset) proxy;
H A DHidProfile.java45 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
46 mService = (BluetoothInputDevice) proxy;
H A DPanProfile.java50 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
51 mService = (BluetoothPan) proxy;
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DDownloadCache.java130 TaskProxy proxy = new TaskProxy();
156 TaskProxy proxy = new TaskProxy();
172 task.addProxy(proxy);
175 return proxy.get(jc);
300 public void removeProxy(TaskProxy proxy) { argument
302 Utils.assertTrue(mProxySet.remove(proxy));
311 public void addProxy(TaskProxy proxy) { argument
312 proxy.mTask = this;
313 mProxySet.add(proxy);
336 for (TaskProxy proxy
[all...]

Completed in 72 milliseconds