Searched defs:route (Results 1 - 18 of 18) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
H A DNamedMailbox.java41 public NamedMailbox(String name, DomainList route, String localPart, String domain) { argument
42 super(route, localPart, domain);
H A DMailbox.java30 private DomainList route; field in class:Mailbox
35 * Creates a mailbox without a route. Routes are obsolete.
44 * Creates a mailbox with a route. Routes are obsolete.
45 * @param route The zero or more domains that make up the route. Can be null.
49 public Mailbox(DomainList route, String localPart, String domain) { argument
50 this.route = route;
56 * Returns the route list.
59 return route;
[all...]
H A DBuilder.java150 DomainList route = null;
153 route = buildRoute((ASTroute)n);
162 return buildAddrSpec(route, (ASTaddr_spec)n);
183 private Mailbox buildAddrSpec(DomainList route, ASTaddr_spec node) { argument
187 return new Mailbox(route, localPart, domain);
/packages/apps/Dialer/java/com/android/incallui/call/
H A DTelecomAdapter.java77 public void setAudioRoute(int route) { argument
79 mInCallService.setAudioRoute(route);
/packages/apps/Dialer/java/com/android/incallui/incall/protocol/
H A DInCallButtonUiDelegate.java60 void setAudioRoute(int route); argument
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/
H A DVoicemailAudioManager.java85 int newRoute = mCallAudioState.getRoute(); // start out with existing route
98 // We need to call this every time even if we do not change the route because the supported
123 * route to the bluetooth headset automatically if A2DP ("media") is available, but if the headset
124 * only supports SCO then dialer must route it manually.
165 * Change the audio route, for example from earpiece to speakerphone.
167 * @param route The new audio route to use. See {@link CallAudioState}.
169 void setAudioRoute(int route) { argument
172 "route: " + CallAudioState.audioRouteToString(route));
208 selectWiredOrEarpiece(int route, int supportedRouteMask) argument
[all...]
/packages/apps/Dialer/java/com/android/incallui/
H A DCallButtonPresenter.java170 public void setAudioRoute(int route) { argument
173 "sending new audio route: " + CallAudioState.audioRouteToString(route));
174 TelecomAdapter.getInstance().setAudioRoute(route);
/packages/apps/Nfc/nci/jni/
H A DRoutingManager.cpp65 // Get the "default" route
70 ALOGV("%s: default route is 0x%02X", fn, mDefaultEe);
72 // Get the "default" route for Nfc-F
77 ALOGV("%s: default route for Nfc-F is 0x%02X", fn, mDefaultEeNfcF);
79 // Get the default "off-host" route. This is hard-coded at the Java layer
329 bool RoutingManager::addAidRouting(const uint8_t* aid, uint8_t aidLen, int route, int aidInfo) argument
333 tNFA_STATUS nfaStat = NFA_EeAddAidRouting(route, aidLen, (uint8_t*) aid, 0x01, aidInfo);
340 ALOGE("%s: failed to route AID", fn);
H A DNativeNfcManager.cpp800 ** route: aid route location. i.e. DH/eSE/UICC
806 static jboolean nfcManager_routeAid (JNIEnv* e, jobject, jbyteArray aid, jint route, jint aidInfo) argument
811 return RoutingManager::getInstance().addAidRouting(buf, bufLen, route, aidInfo);
/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallAdapter.java271 public void setAudioRoute(int route) { argument
277 mCallsManager.setAudioRoute(route);
H A DCallAudioManager.java386 * Changed the audio route, for example from earpiece to speaker phone.
388 * @param route The new audio route to use. See {@link CallAudioState}.
390 void setAudioRoute(int route) { argument
391 Log.v(this, "setAudioRoute, route: %s", CallAudioState.audioRouteToString(route));
392 switch (route) {
415 Log.wtf(this, "Invalid route specified: %d", route);
H A DCallsManager.java1218 * @param gatewayInfo Optional gateway information that can be used to route the call to the
1647 * Called by the in-call UI to change the audio route, for example to change from earpiece to
1650 void setAudioRoute(int route) { argument
1651 mCallAudioManager.setAudioRoute(route);
/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
H A DUiCallManager.java439 public void onAudioStateChanged(boolean isMuted, int route, int supportedRouteMask) {} argument
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java114 public native boolean routeAid(byte[] aid, int route, int aidInfo); argument
/packages/apps/Settings/src/com/android/settings/wfd/
H A DWifiDisplaySettings.java266 MediaRouter.RouteInfo route = mRouter.getRouteAt(i);
267 if (route.matchesTypes(MediaRouter.ROUTE_TYPE_REMOTE_DISPLAY)) {
268 preferenceScreen.addPreference(createRoutePreference(route));
296 private RoutePreference createRoutePreference(MediaRouter.RouteInfo route) { argument
297 WifiDisplay display = findWifiDisplay(route.getDeviceAddress());
299 return new WifiDisplayRoutePreference(getPrefContext(), route, display);
301 return new RoutePreference(getPrefContext(), route);
552 private void toggleRoute(MediaRouter.RouteInfo route) { argument
553 if (route.isSelected()) {
557 route
656 RoutePreference(Context context, MediaRouter.RouteInfo route) argument
696 WifiDisplayRoutePreference(Context context, MediaRouter.RouteInfo route, WifiDisplay display) argument
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParser.java342 route();
372 final public void route() throws ParseException { method in class:AddressListParser
373 /*@bgen(jjtree) route */
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java186 public boolean routeAid(byte[] aid, int route, int aidInfo); argument
H A DNfcService.java1853 public void routeAids(String aid, int route, int aidInfo) { argument
1856 msg.arg1 = route;
1925 int route = msg.arg1;
1928 mDeviceHost.routeAid(hexStringToBytes(aid), route, aidInfo);

Completed in 361 milliseconds