Searched refs:transport (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/location/java/android/location/
H A DCountryDetector.java125 ListenerTransport transport = new ListenerTransport(listener, looper);
127 mService.addCountryListener(transport);
128 mListeners.put(listener, transport);
141 ListenerTransport transport = mListeners.get(listener);
142 if (transport != null) {
145 mService.removeCountryListener(transport);
H A DLocationManager.java655 ListenerTransport transport = mListeners.get(listener);
656 if (transport == null) {
657 transport = new ListenerTransport(listener, looper);
659 mListeners.put(listener, transport);
660 mService.requestLocationUpdates(provider, criteria, minTime, minDistance, singleShot, transport);
1006 ListenerTransport transport = mListeners.remove(listener);
1007 if (transport != null) {
1008 mService.removeUpdates(transport);
1456 GpsStatusListenerTransport transport = new GpsStatusListenerTransport(listener);
1457 result = mService.addGpsStatusListener(transport);
[all...]
/frameworks/base/core/java/android/app/backup/
H A DIBackupManager.aidl135 * transport will still be asked to confirm via the usual requestBackupTime()
197 * Identify the currently selected transport. Callers must hold the
209 * Specify the current backup transport. Callers must hold the
212 * @param transport The name of the transport to select. This should be one
214 * @return The name of the previously selected transport. If the given transport
216 * the current transport setting and the method returns null.
218 String selectBackupTransport(String transport);
221 * Get the configuration Intent, if any, from the given transport
[all...]
/frameworks/base/core/java/android/os/
H A DCancellationSignal.java126 * Sets the remote transport.
129 * remote transport is canceled immediately.
131 * This method is guaranteed that the remote transport will not be called after it
134 * @param remote The remote transport, or null to remove.
166 * Creates a transport that can be returned back to the caller of
169 * @return The new cancellation signal transport.
178 * Given a locally created transport, returns its associated cancellation signal.
180 * @param transport The locally created transport, or null if none.
185 public static CancellationSignal fromTransport(ICancellationSignal transport) { argument
[all...]
/frameworks/base/tests/CoreTests/
H A Drun_core_test.sh3 adb shell exec dalvikvm -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=3001 \
/frameworks/base/services/java/com/android/server/
H A DBackupManagerService.java285 public IBackupTransport transport; field in class:BackupManagerService.RestoreGetSetsParams
291 transport = _transport;
298 public IBackupTransport transport; field in class:BackupManagerService.RestoreParams
308 transport = _transport;
319 transport = _transport;
330 transport = _transport;
341 public IBackupTransport transport; field in class:BackupManagerService.ClearParams
345 transport = _transport;
444 HashSet<String> mPendingInits = new HashSet<String>(); // transport names
472 IBackupTransport transport
1291 registerTransport(String name, IBackupTransport transport) argument
1816 PerformBackupTask(IBackupTransport transport, ArrayList<BackupRequest> queue, File journal) argument
2095 invokeAgentForBackup(String packageName, IBackupAgent agent, IBackupTransport transport) argument
4138 PerformRestoreTask(IBackupTransport transport, IRestoreObserver observer, long restoreSetToken, PackageInfo targetPackage, int pmToken, boolean needFullBackup, String[] filterSet) argument
4666 PerformClearTask(IBackupTransport transport, PackageInfo packageInfo) argument
5265 selectBackupTransport(String transport) argument
5407 beginRestoreSession(String packageName, String transport) argument
5494 ActiveRestoreSession(String packageName, String transport) argument
[all...]
/frameworks/base/voip/java/com/android/server/sip/
H A DSipHelper.java180 private SipURI createSipUri(String username, String transport, argument
182 return createSipUri(username, transport, lp.getIPAddress(), lp.getPort());
185 private SipURI createSipUri(String username, String transport, argument
190 uri.setTransportParam(transport);
/frameworks/av/media/libstagefright/rtsp/
H A DMyTransmitter.h484 i = response->mHeaders.indexOfKey("transport");
486 AString transport = response->mHeaders.valueAt(i); local
488 LOG(INFO) << "transport = '" << transport << "'";
491 CHECK(GetAttribute(transport.c_str(), "server_port", &value));
496 CHECK(GetAttribute(transport.c_str(), "source", &value));
H A DMyHandler.h258 bool pokeAHole(int rtpSocket, int rtcpSocket, const AString &transport) { argument
265 if (!GetAttribute(transport.c_str(),
284 if (!GetAttribute(transport.c_str(),
558 i = response->mHeaders.indexOfKey("transport");
562 AString transport = response->mHeaders.valueAt(i); local
569 transport);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DTestShellActivity.java801 WebView.WebViewTransport transport =
803 transport.setWebView(null);
817 WebView.WebViewTransport transport =
819 transport.setWebView(newWindowView);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestsExecutor.java237 WebView.WebViewTransport transport = (WebView.WebViewTransport)resultMsg.obj;
250 transport.setWebView(newWindowWebView);
/frameworks/base/core/java/android/webkit/
H A DCallbackProxy.java1263 WebView.WebViewTransport transport =
1266 msg.obj = transport;
1269 WebViewClassic w = WebViewClassic.fromWebView(transport.getWebView());
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DKeyguardStatusViewManager.java184 mTransportView = (TransportControlView) findViewById(R.id.transport);
189 // Hide transport control view until we know we need to show it.
H A DLockPatternKeyguardView.java235 // If there's not a bg protection view containing the transport, then show a black
972 mTransportControlView = (TransportControlView) view.findViewById(R.id.transport);
974 if (DEBUG) Log.w(TAG, "Couldn't find transport control widget");

Completed in 281 milliseconds