Searched refs:host (Results 26 - 50 of 199) sorted by relevance

12345678

/frameworks/compile/mclinker/lib/Target/ARM/TargetInfo/
H A DAndroid.mk6 # For the host
/frameworks/compile/mclinker/lib/Target/Mips/TargetInfo/
H A DAndroid.mk6 # For the host
/frameworks/compile/mclinker/lib/Target/X86/TargetInfo/
H A DAndroid.mk6 # For the host
/frameworks/compile/mclinker/
H A Dmcld.mk5 MCLD_HOST_BUILD_MK := $(MCLD_ROOT_PATH)/mcld-host-build.mk
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DUserTile.java35 public UserTile(Host host) { argument
36 super(host);
37 mUserSwitcherController = host.getUserSwitcherController();
38 mUserInfoController = host.getUserInfoController();
/frameworks/base/packages/services/PacProcessor/src/com/android/pacprocessor/
H A DPacService.java73 public String resolvePacFile(String host, String url) throws RemoteException { argument
75 if (host == null) {
76 throw new IllegalArgumentException("The host must not be null");
83 for (char c : host.toCharArray()) {
85 throw new IllegalArgumentException("Invalid host was passed");
88 return mPacNative.makeProxyRequest(url, host);
/frameworks/compile/libbcc/
H A Dlibbcc-host-build.mk39 $(LLVM_ROOT_PATH)/host/include \
H A Dlibbcc.mk32 LIBBCC_HOST_BUILD_MK := $(LIBBCC_ROOT_PATH)/libbcc-host-build.mk
/frameworks/compile/mclinker/tools/mcld/
H A DAndroid.mk70 # zlib's libnames are different for the host and target.
86 # Executable for the host
100 # zlib's libnames are different for the host and target.
101 # For the host, it is libz-host
102 LOCAL_SHARED_LIBRARIES := $(MCLD_SHARED_LIBRARIES) libz-host
108 # Build Options.inc from Options.td for the host
112 $(call transform-host-td-to-out,opt-parser-defs)
/frameworks/support/design/src/android/support/design/widget/
H A DCheckableImageButton.java56 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) {
57 super.onInitializeAccessibilityEvent(host, event);
62 public void onInitializeAccessibilityNodeInfo(View host,
64 super.onInitializeAccessibilityNodeInfo(host, info);
/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DAbstractVerifier.java92 public final void verify(String host, SSLSocket ssl) argument
94 if(host == null) {
95 throw new NullPointerException("host to verify is null");
101 verify(host, x509);
104 public final boolean verify(String host, SSLSession session) { argument
108 verify(host, x509);
116 public final void verify(String host, X509Certificate cert) argument
120 verify(host, cns, subjectAlts);
123 public final void verify(final String host, final String[] cns, argument
145 String msg = "Certificate for <" + host
[all...]
H A DSSLSocketFactory.java290 final String host,
297 if (host == null) {
298 throw new IllegalArgumentException("Target host may not be null.");
323 remoteAddress = new InetSocketAddress(this.nameResolver.resolve(host), port);
325 remoteAddress = new InetSocketAddress(host, port);
340 hostnameVerifier.verify(host, sslsock);
390 final String host,
396 host,
408 hostnameVerifier.verify(host, sslSocket);
288 connectSocket( final Socket sock, final String host, final int port, final InetAddress localAddress, int localPort, final HttpParams params ) argument
388 createSocket( final Socket socket, final String host, final int port, final boolean autoClose ) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DAutoTileManager.java37 public AutoTileManager(Context context, QSTileHost host) { argument
39 mHost = host;
42 host.getHotspotController().addCallback(mHotspotCallback);
45 host.getNetworkController().getDataSaverController().addListener(mDataSaverListener);
67 host.getManagedProfileController().addCallback(mProfileCallback);
/frameworks/base/core/java/android/net/
H A DProxyInfo.java62 * on the specified host and port.
64 public static ProxyInfo buildDirectProxy(String host, int port) { argument
65 return new ProxyInfo(host, port, null);
70 * on the specified host and port.
72 * The proxy will not be used to access any host in exclusion list, exclList.
77 public static ProxyInfo buildDirectProxy(String host, int port, List<String> exclList) { argument
79 return new ProxyInfo(host, port, TextUtils.join(",", array), array);
94 public ProxyInfo(String host, int port, String exclList) { argument
95 mHost = host;
140 private ProxyInfo(String host, in argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DEphemeralResolveInfo.java157 final String host = uri.getHost().toLowerCase(Locale.ENGLISH);
160 final byte[] hostBytes = host.getBytes();
163 int prevDot = host.lastIndexOf('.');
164 prevDot = host.lastIndexOf('.', prevDot - 1);
167 digests.add(digest.digest(host.getBytes()));
169 byte[] hostBytes = host.substring(prevDot + 1, host.length()).getBytes();
173 prevDot = host.lastIndexOf('.', prevDot - 1);
174 hostBytes = host.substring(prevDot + 1, host
[all...]
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java639 Host host = mHosts.get(i);
640 if (host.id.uid == UNKNOWN_UID && pkg.equals(host.id.packageName)) {
642 Slog.i(TAG, "host " + host.id + " resolved to uid " + uid);
644 host.id = new HostId(uid, host.id.hostId, host.id.packageName);
761 Host host = lookupOrAddHostLocked(id);
762 host
1654 deleteHostLocked(Host host) argument
1845 handleNotifyAppWidgetViewDataChanged(Host host, IAppWidgetHost callbacks, int appWidgetId, int viewId, long requestTime) argument
1917 handleNotifyUpdateAppWidget(Host host, IAppWidgetHost callbacks, int appWidgetId, RemoteViews views, long requestTime) argument
1954 handleNotifyProviderChanged(Host host, IAppWidgetHost callbacks, int appWidgetId, AppWidgetProviderInfo info, long requestTime) argument
2002 handleNotifyProvidersChanged(Host host, IAppWidgetHost callbacks) argument
2075 pruneHostLocked(Host host) argument
2280 dumpHost(Host host, int index, PrintWriter pw) argument
2318 serializeHost(XmlSerializer out, Host host) argument
3631 isHostInPackageForUid(Host host, int uid, String packageName) argument
3642 isHostAccessingProvider(Host host, Provider provider, int uid, String packageName) argument
3918 Host host; field in class:AppWidgetServiceImpl.Widget
4398 findRestoredWidgetLocked(int restoredId, Host host, Provider p) argument
4477 stashHostRestoreUpdateLocked(Host host, int oldId, int newId) argument
4494 sendWidgetRestoreBroadcastLocked(String action, Provider provider, Host host, int[] oldIds, int[] newIds, UserHandle userHandle) argument
[all...]
/frameworks/base/core/java/org/apache/http/conn/scheme/
H A DSocketFactory.java76 * Connects a socket to the given host.
82 * @param host the host to connect to
83 * @param port the port to connect to on the host
95 * @throws UnknownHostException if the IP address of the target host
102 String host,
120 * socket to a host in the same intranet ("trusted zone")
100 connectSocket( Socket sock, String host, int port, InetAddress localAddress, int localPort, HttpParams params ) argument
/frameworks/base/packages/StatementService/src/com/android/statementservice/
H A DIntentFilterVerificationReceiver.java46 * This implementation of the API will send a HTTP request for each host specified in the query.
108 for (String host : hostList) {
110 if (host.startsWith("*.")) {
111 host = host.substring(2);
113 sourceAssets.add(createWebAssetString(scheme, host));
114 finalHosts.add(host);
119 Log.w(TAG, "Error when processing input host: " + e.getMessage());
168 private String createWebAssetString(String scheme, String host) throws MalformedURLException { argument
169 if (!Patterns.DOMAIN_NAME.matcher(host)
[all...]
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
H A DAndroid.mk3 # Build for Linux (desktop) host
/frameworks/base/services/core/java/com/android/server/pm/
H A DIntentFilterVerificationKey.java32 for (String host : domains) {
33 sb.append(host);
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DAndroid.mk9 # For the host
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DAndroid.mk9 # For the host
/frameworks/compile/mclinker/lib/Core/
H A DAndroid.mk15 # For the host
/frameworks/compile/mclinker/lib/Fragment/
H A DAndroid.mk13 # For the host
/frameworks/compile/mclinker/lib/MC/
H A DAndroid.mk18 # For the host

Completed in 871 milliseconds

12345678