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

/frameworks/base/core/java/android/webkit/
H A DJsPromptResult.java39 /*package*/ JsPromptResult(CallbackProxy proxy) { argument
40 super(proxy, /* unused */ false);
H A DJsResult.java53 /*package*/ JsResult(CallbackProxy proxy, boolean defaultVal) { argument
54 mProxy = proxy;
H A DWebBackForwardList.java40 /*package*/ WebBackForwardList(CallbackProxy proxy) { argument
43 mCallbackProxy = proxy;
H A DHTML5VideoViewProxy.java97 // The proxy that is currently playing (if any).
112 public TimeupdateTask(HTML5VideoViewProxy proxy) { argument
113 mProxy = proxy;
157 public static void play(String url, int time, HTML5VideoViewProxy proxy, argument
159 if (mCurrentProxy == proxy) {
168 proxy.dispatchOnEnded();
172 mCurrentProxy = proxy;
175 mLayout = new FrameLayout(proxy.getContext());
180 mVideoView = new VideoView(proxy.getContext());
182 mVideoView.setMediaController(new MediaController(proxy
211 isPlaying(HTML5VideoViewProxy proxy) argument
223 seek(int time, HTML5VideoViewProxy proxy) argument
229 pause(HTML5VideoViewProxy proxy) argument
361 PosterDownloader(String url, HTML5VideoViewProxy proxy) argument
[all...]
H A DBrowserFrame.java179 * @param proxy A CallbackProxy for posting messages to the UI thread and
184 public BrowserFrame(Context context, WebViewCore w, CallbackProxy proxy, argument
221 mCallbackProxy = proxy;
226 nativeCreateFrame(w, am, proxy.getBackForwardList());
H A DWebViewCore.java132 public WebViewCore(Context context, WebView w, CallbackProxy proxy, argument
135 mCallbackProxy = proxy;
331 // Inform the callback proxy of the quota overflow. Send an object
H A DWebView.java1331 * Enables platform notifications of data state and proxy changes.
4804 public DragTrackerHandler(float x, float y, DragTracker proxy) { argument
4805 mProxy = proxy;
4897 // capturing the display and giving it to the drag proxy
/frameworks/base/core/java/android/net/http/
H A DHttpsConnection.java50 * a http proxy server to a https server.
135 // Used when connecting through a proxy.
141 HttpsConnection(Context context, HttpHost host, HttpHost proxy, argument
144 mProxyHost = proxy;
157 * Opens the connection to a http server or proxy.
167 // If we have a proxy set, we first send a CONNECT request
168 // to the proxy; if the proxy returns 200 OK, we negotiate
169 // a secure connection to the target server via the proxy.
195 "failed to establish a connection to the proxy";
[all...]
H A DConnection.java70 * The host this connection is connected to. If using proxy,
71 * this is set to the proxy address
124 Context context, HttpHost host, HttpHost proxy,
132 return new HttpsConnection(context, host, proxy, requestFeeder);
123 getConnection( Context context, HttpHost host, HttpHost proxy, RequestFeeder requestFeeder) argument
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DApnSetting.java29 String proxy; field in class:ApnSetting
44 String proxy, String port,
52 this.proxy = proxy;
74 * <carrier>, <apn>, <proxy>, <port>, <mmsc>, <mmsproxy>,
79 * [ApnSettingV2] <carrier>, <apn>, <proxy>, <port>, <mmsc>, <mmsproxy>,
139 .append(", ").append(proxy)
43 ApnSetting(int id, String numeric, String carrier, String apn, String proxy, String port, String mmsc, String mmsProxy, String mmsPort, String user, String password, int authType, String[] types, String protocol, String roamingProtocol) argument
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionListenerProxy.java39 private void proxy(Runnable runnable) { method in class:SipSessionListenerProxy
48 proxy(new Runnable() {
62 proxy(new Runnable() {
75 proxy(new Runnable() {
89 proxy(new Runnable() {
102 proxy(new Runnable() {
115 proxy(new Runnable() {
129 proxy(new Runnable() {
143 proxy(new Runnable() {
156 proxy(ne
[all...]
/frameworks/base/tools/aidl/
H A Daidl.cpp314 // for interfaces, also add the stub and proxy types, we don't
328 Type* proxy = new Type(c->package ? c->package : "", local
331 NAMES.Add(proxy);
H A Dgenerate_java.cpp139 m->comment += " * generating a proxy if needed.\n */";
447 // == the proxy method ===================================================
448 Method* proxy = new Method; local
449 proxy->comment = gather_comments(method->comments_token->extra);
450 proxy->modifiers = PUBLIC;
451 proxy->returnType = NAMES.Search(method->type.type.data);
452 proxy->returnTypeDimension = method->type.dimension;
453 proxy->name = method->name.data;
454 proxy->statements = new StatementBlock;
457 proxy
559 generate_interface_descriptors(StubClass* stub, ProxyClass* proxy) argument
600 ProxyClass* proxy = new ProxyClass( local
[all...]
/frameworks/base/libs/binder/
H A DIPCThreadState.cpp608 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpBinder* proxy) argument
612 mOut.writeInt32((int32_t)proxy);
616 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) argument
620 mOut.writeInt32((int32_t)proxy);
1044 BpBinder *proxy = (BpBinder*)mIn.readInt32(); local
1045 proxy->sendObituary();
1047 mOut.writeInt32((int32_t)proxy);
1052 BpBinder *proxy = (BpBinder*)mIn.readInt32(); local
1053 proxy->getWeakRefs()->decWeak(proxy);
[all...]
H A DParcel.cpp155 BpBinder *proxy = binder->remoteBinder(); local
156 if (proxy == NULL) {
157 LOGE("null proxy");
159 const int32_t handle = proxy ? proxy->handle() : 0;
188 BpBinder *proxy = real->remoteBinder(); local
189 if (proxy == NULL) {
190 LOGE("null proxy");
192 const int32_t handle = proxy ? proxy
225 finish_unflatten_binder( BpBinder* proxy, const flat_binder_object& flat, const Parcel& in) argument
[all...]

Completed in 192 milliseconds