HomeSort by relevance Sort by last modified time
    Searched defs:host (Results 1 - 25 of 1129) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/contrib/
print_host_labels.py 15 host = factory.create_host(sys.argv[1]) variable
16 labels = host.get_labels()
  /external/curl/docs/examples/
resolve.c 23 * Use CURLOPT_RESOLVE to feed custom IP addresses for given host name + port
34 struct curl_slist *host = NULL; local
37 HOST:PORT:ADDRESS where HOST is the name libcurl will try to resolve,
39 the HOST and ADDRESS is the numerical IP address
41 host = curl_slist_append(NULL, "example.com:80:127.0.0.1");
45 curl_easy_setopt(curl, CURLOPT_RESOLVE, host);
53 curl_slist_free_all(host);
  /external/libnl/src/
nl-util-addr.c 17 char host[256]; local
26 err = nl_addr_resolve(a, host, sizeof(host));
31 printf("%s\n", host);
  /external/tensorflow/tensorflow/stream_executor/host/
host_platform_id.cc 16 #include "tensorflow/stream_executor/host/host_platform_id.h"
20 namespace host { namespace in namespace:perftools::gputools
24 } // namespace host
host_platform_id.h 23 namespace host { namespace in namespace:perftools::gputools
25 // Opaque and unique identifier for the host platform.
32 } // namespace host
host_timer.h 25 namespace host { namespace in namespace:perftools::gputools
59 } // namespace host
host_gpu_executor.h 18 // examine the performance of host-based StreamExecutor code.
23 #include "tensorflow/stream_executor/host/host_stream.h"
24 #include "tensorflow/stream_executor/host/host_timer.h"
33 namespace host { namespace in namespace:perftools::gputools
36 // with a device, but DOES perform memory operations backed by the host.
38 // Kernel invocations will fail, but host callbacks may be enqueued on this
42 // This is useful for evaluating the performance of host-based or fallback
133 // No special initialization is necessary for host timers.
161 LOG(INFO) << "Shared memory configuration is unsupported for host "
168 "Shared memory configuration is unsupported for host "
    [all...]
host_platform.h 16 // Declares the "host" platform, which is a CPU-only implementation of the
17 // StreamExecutor. The host platform only supports memory operations and plugin
38 namespace host { namespace in namespace:perftools::gputools
40 // Host (CPU) platform plugin, registered as a singleton value via module
50 // currently returns the number of thread units in the host, as reported by
81 } // namespace host
host_stream.cc 18 #include "tensorflow/stream_executor/host/host_stream.h"
22 namespace host { namespace in namespace:perftools::gputools
54 } // namespace host
host_stream.h 16 // Class declaration for Stream type that enqueues tasks onto a host/CPU-based
29 namespace host { namespace in namespace:perftools::gputools
54 } // namespace host
host_timer.cc 16 #include "tensorflow/stream_executor/host/host_timer.h"
24 namespace host { namespace in namespace:perftools::gputools
48 } // namespace host
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/media/
PlaybackGlueTest.java 53 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
55 glue.setHost(host);
56 Mockito.verify(glue, times(1)).onAttachedToHost(host);
57 assertSame(glue, host.mGlue);
58 assertSame(host, glue.getHost());
60 host.notifyOnStart();
63 host.notifyOnResume();
66 host.notifyOnPause();
69 host.notifyOnStop();
73 glue2.setHost(host);
90 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
125 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
    [all...]
  /external/ipsec-tools/src/racoon/
throttle.h 40 struct sockaddr_storage host; member in struct:throttle_entry
  /external/jcommander/src/test/java/com/beust/jcommander/
HostPort.java 22 public String host; field in class:HostPort
27 return "[Host:" + host + " port:" + port + "]";
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
HostAndPort.java 21 * A data-only (transfer) object representing a host (InetAddress) and port number
24 * This class contains two public properties: host (java.net.InetAddress) and port (int).
30 public InetAddress host; field in class:HostAndPort
34 * Construct a new instance with the specified host and port
35 * @param host - the InetAddress host
38 public HostAndPort(InetAddress host, int port) {
39 this.host = host;
  /packages/apps/Dialer/java/com/android/voicemail/
VoicemailSecretCodeReceiver.java 29 String host = intent.getData().getHost(); local
30 if (!VoicemailClient.VOICEMAIL_SECRET_CODE.equals(host)) {
  /system/core/base/
parsenetaddress_test.cpp 24 std::string canonical, host, error; local
28 ParseNetAddress("www.google.com", &host, &port, &canonical, &error));
30 EXPECT_EQ("www.google.com", host);
34 ParseNetAddress("www.google.com:666", &host, &port, &canonical, &error));
36 EXPECT_EQ("www.google.com", host);
41 std::string canonical, host, error; local
44 EXPECT_TRUE(ParseNetAddress("1.2.3.4", &host, &port, &canonical, &error));
46 EXPECT_EQ("1.2.3.4", host);
49 EXPECT_TRUE(ParseNetAddress("1.2.3.4:666", &host, &port, &canonical, &error));
51 EXPECT_EQ("1.2.3.4", host);
56 std::string canonical, host, error; local
83 std::string canonical, host; local
121 std::string host, error; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/development/
DisableLogPersistWarningDialog.java 35 public static void show(LogPersistDialogHost host) {
36 if (!(host instanceof Fragment)) {
39 final Fragment hostFragment = (Fragment) host;
66 final LogPersistDialogHost host = (LogPersistDialogHost) getTargetFragment(); local
67 if (host == null) {
71 host.onDisableLogPersistDialogConfirmed();
73 host.onDisableLogPersistDialogRejected();
EnableAdbWarningDialog.java 35 public static void show(Fragment host) {
36 final FragmentManager manager = host.getActivity().getFragmentManager();
39 dialog.setTargetFragment(host, 0 /* requestCode */);
61 final AdbDialogHost host = (AdbDialogHost) getTargetFragment(); local
62 if (host == null) {
66 host.onEnableAdbDialogConfirmed();
68 host.onEnableAdbDialogDismissed();
75 final AdbDialogHost host = (AdbDialogHost) getTargetFragment(); local
76 if (host == null) {
79 host.onEnableAdbDialogDismissed()
    [all...]
EnableDevelopmentSettingWarningDialog.java 35 DevelopmentSettingsDashboardFragment host) {
38 dialog.setTargetFragment(host, 0 /* requestCode */);
39 final FragmentManager manager = host.getActivity().getFragmentManager();
62 final DevelopmentSettingsDashboardFragment host = local
65 host.onEnableDevelopmentOptionsConfirmed();
67 host.onEnableDevelopmentOptionsRejected();
EnableOemUnlockSettingWarningDialog.java 35 public static void show(Fragment host) {
36 final FragmentManager manager = host.getActivity().getFragmentManager();
40 dialog.setTargetFragment(host, 0 /* requestCode */);
62 final OemUnlockDialogHost host = (OemUnlockDialogHost) getTargetFragment(); local
63 if (host == null) {
67 host.onOemUnlockDialogConfirmed();
69 host.onOemUnlockDialogDismissed();
76 final OemUnlockDialogHost host = (OemUnlockDialogHost) getTargetFragment(); local
77 if (host == null) {
80 host.onOemUnlockDialogDismissed()
    [all...]
  /external/apache-http/src/org/apache/http/conn/
HttpHostConnectException.java 50 private final HttpHost host; field in class:HttpHostConnectException
52 public HttpHostConnectException(final HttpHost host, final ConnectException cause) {
53 super("Connection to " + host + " refused");
54 this.host = host;
59 return this.host;
  /external/libmicrohttpd/src/microspdy/
alstructures.h 63 * called host as in HTTP
65 char *host; member in struct:SPDY_Request
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntentFilterAuthorityEntry.java 9 private String host; field in class:ShadowIntentFilterAuthorityEntry
12 public void __constructor__(String host, String port) {
13 this.host = host;
23 return host;
  /external/tensorflow/tensorflow/core/platform/posix/
posix_file_system.h 68 StringPiece scheme, host, path; variable
69 io::ParseURI(name, &scheme, &host, &path);

Completed in 1762 milliseconds

1 2 3 4 5 6 7 8 91011>>