HomeSort by relevance Sort by last modified time
    Searched defs:port_name (Results 1 - 5 of 5) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
earlywarningsystem.py 41 self.port = WebKitPort.port(self.port_name)
104 message = "Attachment %s did not build on %s:\nBuild output: %s" % (state["patch"].id(), cls.port_name, results_link)
111 port_name = "gtk" variable in class:GtkEWS
120 port_name = "efl" variable in class:EflEWS
131 port_name = "qt" variable in class:QtEWS
136 port_name = "win" variable in class:WinEWS
143 port_name = "chromium" variable in class:AbstractChromiumEWS
183 port_name = "mac" variable in class:MacEWS
earlywarningsystem_unittest.py 41 # Needed to define port_name, used in AbstractEarlyWarningSystem.__init__
43 port_name = "win" # Needs to be a port which port/factory understands. variable in class:AbstractEarlyWarningSystemTest.test_can_build.TestEWS
84 "port": ews.port_name,
  /external/chromium/chrome/browser/
mach_broker_mac.cc 61 std::string port_name = MachBroker::GetMachPortName(); local
66 receive_port_.reset(new base::ReceivePort(port_name.c_str()));
  /development/tools/emulator/opengl/tests/event_injector/
sockets.c 819 const char* port_name = strchr(host_and_port, ':'); local
820 if (port_name != NULL) {
821 int to_copy = MIN((int)sizeof(host_name)-1, port_name - host_and_port);
826 port_name++;
831 port_name = host_and_port;
833 // Make sure that port_name is not empty.
834 if (port_name[0] == '\0') {
837 return sock_address_list_create(actual_host_name, port_name, flags);
    [all...]
  /external/qemu/
sockets.c 814 const char* port_name = strchr(host_and_port, ':'); local
815 if (port_name != NULL) {
816 int to_copy = MIN(sizeof(host_name)-1, port_name - host_and_port);
821 port_name++;
826 port_name = host_and_port;
828 // Make sure that port_name is not empty.
829 if (port_name[0] == '\0') {
832 return sock_address_list_create(actual_host_name, port_name, flags);
    [all...]

Completed in 76 milliseconds