HomeSort by relevance Sort by last modified time
    Searched refs:Hostname (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/tensorflow/tensorflow/core/platform/
host_info.h 24 // Return the hostname of the machine on which this process is running
25 string Hostname();
  /external/tensorflow/tensorflow/stream_executor/lib/
process_state.h 25 string Hostname();
process_state.cc 32 string Hostname() {
33 char hostname[1024]; local
34 gethostname(hostname, sizeof hostname);
35 hostname[sizeof hostname - 1] = 0;
36 return std::string(hostname);
  /prebuilts/go/darwin-x86/src/os/
sys.go 7 // Hostname returns the host name reported by the kernel.
8 func Hostname() (name string, err error) {
9 return hostname()
  /prebuilts/go/linux-x86/src/os/
sys.go 7 // Hostname returns the host name reported by the kernel.
8 func Hostname() (name string, err error) {
9 return hostname()
  /external/llvm/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
LockFileManager.h 68 static bool processStillExecuting(StringRef Hostname, int PID);
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 67 char Hostname[COMPILER_RT_MAX_HOSTLEN];
265 char *Hostname = &lprofCurFilename.Hostname[0];
283 if (COMPILER_RT_GETHOSTNAME(Hostname, COMPILER_RT_MAX_HOSTLEN)) {
352 * filename with PID and hostname substitutions. */
366 lprofCurFilename.NumHosts * (strlen(lprofCurFilename.Hostname) - 2);
388 HostNameLength = strlen(lprofCurFilename.Hostname);
396 memcpy(FilenameBuf + J, lprofCurFilename.Hostname, HostNameLength);
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_diagnostics.cc 136 << "(" << port::Hostname() << ")";
140 << "(" << port::Hostname() << ")";
146 << "(" << port::Hostname() << "): "
159 << port::Hostname();
165 LOG(INFO) << "hostname: " << port::Hostname();
  /external/llvm/lib/Support/
LockFileManager.cpp 53 StringRef Hostname;
55 std::tie(Hostname, PIDStr) = getToken(MB.getBuffer(), " ");
59 auto Owner = std::make_pair(std::string(Hostname), PID);
73 // On OS X, use the more stable hardware UUID instead of hostname.
85 char HostName[256];
86 HostName[255] = 0;
87 HostName[0] = 0;
88 gethostname(HostName, 255);
89 StringRef HostNameRef(HostName);
  /external/ltp/pan/cgi/
results.cgi 120 print "<tr><th>Hostname<th>Date<th>Suite</tr>\n";
  /external/tensorflow/tensorflow/compiler/xla/service/
compile_only_service.cc 89 directory_path, tensorflow::port::Hostname());

Completed in 1295 milliseconds

1 2 3