/gem5/util/stats/ |
H A D | dbinit.py | 34 self.host = options.host 42 self.mydb = MySQLdb.connect(db='mysql', host=self.host, user=self.user, 48 self.mydb = MySQLdb.connect(db=self.name, host=self.host,
|
H A D | stats.py | 35 Usage: %s [-E] [-F] [ -G <get> ] [-d <db> ] [-g <graphdir> ] [-h <host>] [-p] 103 source.host = options.host 417 options.host = None 445 options.host = a 466 if not options.host: 467 options.host = options.jobfile.dbhost 471 if not options.host:
|
H A D | db.py | 124 self.host = 'zizzer.pool' 203 host=self.host,
|
/gem5/src/base/ |
H A D | hostinfo.cc | 59 char host[256]; local 60 if (gethostname(host, sizeof host) == -1) 61 warn("could not get host name!"); 62 return host;
|
/gem5/src/dev/pci/ |
H A D | host.hh | 53 * The PCI host describes the interface between PCI devices and a 56 * The PCI host controller has three main responsibilities: 66 * PCI devices need to register themselves with a PCI host using the 87 * Callback interface from PCI devices to the host. 90 * themselves with the host using the PciHost::registerDevice() 101 * @param host PCI host that this device belongs to. 105 DeviceInterface(PciHost &host, PciBusAddr &bus_addr, PciIntPin pin); 130 Addr pioAddr(Addr addr) const { return host.pioAddr(busAddr, addr); } 139 Addr memAddr(Addr addr) const { return host 151 PciHost &host; member in class:PciHost::DeviceInterface [all...] |
H A D | host.cc | 40 #include "dev/pci/host.hh" 91 : host(_host), 100 host.name(), busAddr.bus, busAddr.dev, busAddr.func); 108 host.postInt(busAddr, interruptPin); 116 host.clearInt(busAddr, interruptPin);
|
H A D | PciDevice.py | 53 host = Param.PciHost(Parent.any, "PCI host") variable in class:PciDevice
|
H A D | device.cc | 81 hostInterface(p->host->registerDevice(this, _busAddr, 121 // These structs are bitunions, meaning the data is stored in host 153 // actions when manipulating these tables on the host 367 // convert BAR values to host endianness
|
/gem5/util/term/ |
H A D | term.c | 62 char *host, *port, *endp; local 68 host = NULL; 76 host = "localhost"; 79 host = argv[1]; 96 s = remote_connect(host, port, hints); 108 * Return's a socket connected to a remote host. Properly bind's to a local 112 remote_connect(char *host, char *port, struct addrinfo hints) argument 117 if ((error = getaddrinfo(host, port, &hints, &res)))
|
/gem5/util/statetrace/base/ |
H A D | statetrace.cc | 57 cout << " --host remote m5 host to connect to" << endl; 72 string host = "localhost"; local 83 if (!strcmp(argv[x], "--host")) { 90 host = argv[x]; 128 server = gethostbyname(host.c_str()); 130 cerr << "Couldn't get host ip! " << strerror(errno) << endl;
|
/gem5/ext/systemc/src/sysc/kernel/ |
H A D | sc_cthread_process.h | 74 sc_process_host* host );
|
/gem5/util/tap/ |
H A D | tap.cc | 65 "\t%s [-b bufsize] [-d] [-f filter] [-p port] [-v] <device> <host>\n" 175 Connect(int fd, const std::string &host, int port) argument 178 if (::inet_aton(host.c_str(), &sockaddr.sin_addr) == 0) { 180 hp = ::gethostbyname(host.c_str()); 182 panic("Host %s not found\n", host.c_str()); 190 panic("could not connect to %s on port %d\n", host.c_str(), port); 192 DPRINTF("connected to %s on port %d\n", host.c_str(), port); 328 std::string host; local 396 host = *argv; 415 Connect(pfds[0].fd, host, por [all...] |
/gem5/util/batch/ |
H A D | send.py | 221 def __init__(self, host='pbs.pool', port=24465): 222 self.host = host 244 self.socket.connect((self.host, self.port))
|
H A D | job.py | 167 host = socket.gethostname() variable 176 jobdir.echofile('.host', host) 178 jobdir.setstatus('running on %s on %s' % (host, started))
|
/gem5/util/pbs/ |
H A D | send.py | 222 def __init__(self, host='pbs.pool', port=24465): 223 self.host = host 245 self.socket.connect((self.host, self.port))
|
H A D | job.py | 162 host = socket.gethostname() variable 171 jobdir.echofile('.host', host) 173 jobdir.setstatus('running on %s on %s' % (host, started))
|
/gem5/ext/googletest/googlemock/scripts/ |
H A D | upload.py | 127 def __init__(self, host, auth_function, host_override=None, extra_headers={}, 132 host: The host to send requests to. 136 host_override: The host header to send to the server (defaults to host). 142 self.host = host 150 logging.info("Server: %s; Host: %s", self.host, self.host_override) 152 logging.info("Server: %s", self.host) 187 if self.host [all...] |
/gem5/ext/googletest/googletest/scripts/ |
H A D | upload.py | 127 def __init__(self, host, auth_function, host_override=None, extra_headers={}, 132 host: The host to send requests to. 136 host_override: The host header to send to the server (defaults to host). 142 self.host = host 150 logging.info("Server: %s; Host: %s", self.host, self.host_override) 152 logging.info("Server: %s", self.host) 187 if self.host [all...] |
/gem5/src/sim/ |
H A D | syscall_emul.hh | 60 /// application on the host machine. 535 //// Helper function to convert a host stat buffer to a target stat 541 convertStatBuf(target_stat &tgt, host_stat *host, bool fakeTTY = false) argument 548 tgt->st_dev = host->st_dev; 550 tgt->st_ino = host->st_ino; 552 tgt->st_mode = host->st_mode; 559 tgt->st_nlink = host->st_nlink; 561 tgt->st_uid = host->st_uid; 563 tgt->st_gid = host->st_gid; 568 tgt->st_rdev = host 590 convertStat64Buf(target_stat &tgt, host_stat64 *host, bool fakeTTY = false) argument 612 copyOutStatBuf(PortProxy &mem, Addr addr, hst_stat *host, bool fakeTTY = false) argument 623 copyOutStat64Buf(PortProxy &mem, Addr addr, hst_stat64 *host, bool fakeTTY = false) argument 634 copyOutStatfsBuf(PortProxy &mem, Addr addr, hst_statfs *host) argument [all...] |
/gem5/util/dist/ |
H A D | gem5-dist.sh | 55 # allocated to launch the gem5 processes, 2 of them are on host hname1 56 # and 4 of them are on host hname2. 200 host="" 203 if [ "x$host" == "x" ] 205 host=$hc 210 host=""
|
/gem5/ext/googletest/googletest/src/ |
H A D | gtest-internal-inl.h | 1034 // Streams test results to the given port on the given host machine. 1057 SocketWriter(const string& host, const string& port) argument 1058 : sockfd_(-1), host_name_(host), port_num_(port) { 1103 StreamingListener(const string& host, const string& port) argument 1104 : socket_writer_(new SocketWriter(host, port)) { Start(); }
|
/gem5/src/dev/arm/ |
H A D | RealView.py | 123 int_count = Param.Unsigned("Maximum number of interrupts used by this host") 137 node.appendCompatible("pci-host-cam-generic") 139 node.appendCompatible("pci-host-ecam-generic") 1071 device.host = self.pci_host
|