Searched refs:route (Results 1 - 24 of 24) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
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 DNamedMailbox.java41 public NamedMailbox(String name, DomainList route, String localPart, String domain) { argument
42 super(route, localPart, domain);
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/services/Telephony/src/org/apache/james/mime4j/field/address/
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 DNamedMailbox.java41 public NamedMailbox(String name, DomainList route, String localPart, String domain) { argument
42 super(route, localPart, domain);
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/Nfc/src/com/android/nfc/cardemulation/
H A DAidRoutingManager.java44 // This is the default IsoDep protocol route; it means
47 // table, because this destination is already the default route.
49 // For Nexus devices, the default route is always 0x00.
52 // For Nexus devices, just a static route to the eSE
63 // mAidRoutingTable contains the current routing table. The index is the route ID.
64 // The route can include routes to a eSE/UICC.
68 // Easy look-up what the route is for a certain AID
116 int route = aidEntry.getValue() ? ROUTE_HOST : mDefaultOffHostRoute;
118 Set<String> entries = aidRoutingTable.get(route, new HashSet<String>());
120 aidRoutingTable.put(route, entrie
[all...]
/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallAudioManager.java207 int route = mCallAudioState.getRoute();
215 route = CallAudioState.ROUTE_BLUETOOTH;
218 setSystemAudioState(false /* isMute */, route, mCallAudioState.getSupportedRouteMask());
240 * Updates the audio route when the headset plugged in state changes. For example, if audio is
253 int newRoute = mCallAudioState.getRoute(); // start out with existing route
278 // We need to call this every time even if we do not change the route because the supported
291 // Device just docked, turn to speakerphone. Only do so if the route is currently
333 * Changed the audio route, for example from earpiece to speaker phone.
335 * @param route The new audio route t
337 setAudioRoute(int route) argument
438 setSystemAudioState(boolean isMuted, int route, int supportedRouteMask) argument
442 setSystemAudioState( boolean force, boolean isMuted, int route, int supportedRouteMask) argument
605 selectWiredOrEarpiece(int route, int supportedRouteMask) argument
[all...]
H A DInCallAdapter.java233 public void setAudioRoute(int route) { argument
237 mCallsManager.setAudioRoute(route);
H A DCallsManager.java676 * @param gatewayInfo Optional gateway information that can be used to route the call to the
918 * Called by the in-call UI to change the audio route, for example to change from earpiece to
921 void setAudioRoute(int route) { argument
922 mCallAudioManager.setAudioRoute(route);
/packages/apps/Settings/src/com/android/settings/wfd/
H A DWifiDisplaySettings.java261 MediaRouter.RouteInfo route = mRouter.getRouteAt(i);
262 if (route.matchesTypes(MediaRouter.ROUTE_TYPE_REMOTE_DISPLAY)) {
263 preferenceScreen.addPreference(createRoutePreference(route));
291 private RoutePreference createRoutePreference(MediaRouter.RouteInfo route) { argument
292 WifiDisplay display = findWifiDisplay(route.getDeviceAddress());
294 return new WifiDisplayRoutePreference(getActivity(), route, display);
296 return new RoutePreference(getActivity(), route);
549 private void toggleRoute(MediaRouter.RouteInfo route) { argument
550 if (route.isSelected()) {
554 route
653 RoutePreference(Context context, MediaRouter.RouteInfo route) argument
693 WifiDisplayRoutePreference(Context context, MediaRouter.RouteInfo route, WifiDisplay display) argument
[all...]
/packages/apps/Nfc/nci/jni/
H A DRoutingManager.h38 bool addAidRouting(const UINT8* aid, UINT8 aidLen, int route);
H A DRoutingManager.cpp57 // Get the "default" route
62 ALOGD("%s: default route is 0x%02X", fn, mDefaultEe);
64 // Get the default "off-host" route. This is hard-coded at the Java layer
216 bool RoutingManager::addAidRouting(const UINT8* aid, UINT8 aidLen, int route) argument
220 tNFA_STATUS nfaStat = NFA_EeAddAidRouting(route, aidLen, (UINT8*) aid, 0x01);
227 ALOGE ("%s: failed to route AID", fn);
H A DNativeNfcManager.cpp767 static jboolean nfcManager_routeAid (JNIEnv* e, jobject, jbyteArray aid, jint route) argument
772 bool result = RoutingManager::getInstance().addAidRouting(buf, bufLen, route);
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java186 public boolean routeAid(byte[] aid, int route); argument
H A DNfcService.java1625 public void routeAids(String aid, int route) { argument
1628 msg.arg1 = route;
1657 int route = msg.arg1;
1659 mDeviceHost.routeAid(hexStringToBytes(aid), route);
/packages/apps/InCallUI/src/com/android/incallui/
H A DTelecomAdapter.java114 void setAudioRoute(int route) { argument
116 mInCallService.setAudioRoute(route);
/packages/apps/Exchange/src/com/android/exchange/eas/
H A DEasConnectionCache.java60 public int getMaxForRoute(final HttpRoute route) {
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParser.jj304 "<" [ route() ] addr_spec() ">"/*@bgen(jjtree)*/
328 void route() :
329 {/*@bgen(jjtree) route */
335 {/*@bgen(jjtree) route */
H A DAddressListParser.java342 route();
372 final public void route() throws ParseException { method in class:AddressListParser
373 /*@bgen(jjtree) route */
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParser.jj304 "<" [ route() ] addr_spec() ">"/*@bgen(jjtree)*/
328 void route() :
329 {/*@bgen(jjtree) route */
335 {/*@bgen(jjtree) route */
H A DAddressListParser.java342 route();
372 final public void route() throws ParseException { method in class:AddressListParser
373 /*@bgen(jjtree) route */
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java93 public native boolean routeAid(byte[] aid, int route); argument
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
H A DNativeNfcManager.java144 public boolean routeAid(byte[] aid, int route) argument

Completed in 301 milliseconds