/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_poplib.py | 16 from test.test_support import HOST 119 self.host, self.port = self.socket.getsockname()[:2] 163 self.server = DummyPOP3Server((HOST, 0)) 165 self.client = poplib.POP3(self.server.host, self.server.port) 270 self.server = DummyPOP3Server((HOST, 0)) 273 self.client = poplib.POP3_SSL(self.server.host, self.server.port) 311 pop = poplib.POP3(HOST, self.port) 321 pop = poplib.POP3(HOST, self.port, timeout=None) 328 pop = poplib.POP3(HOST, self.port, timeout=30)
|
test_httplib.py | 13 HOST = test_support.HOST 81 for header in 'Content-length', 'Host', 'Accept-encoding': 129 # Default host header on IPv6 transaction should wrapped by [] if 209 # Note that httplib does not accept user:password@ in the host-port. 221 if h != c.host: 222 self.fail("Host incorrectly parsed: %s != %s" % (h, c.host)) 224 self.fail("Port incorrectly parsed: %s != %s" % (p, c.host)) 435 self.conn = httplib.HTTPConnection(HOST, self.port [all...] |
test_socketserver.py | 27 HOST = test.test_support.HOST 91 return (HOST, 0) 297 s = MyServer((HOST, 0), MyHandler)
|
test_ftplib.py | 20 from test.test_support import HOST 219 self.host, self.port = self.socket.getsockname()[:2] 404 self.server = DummyFTPServer((HOST, 0)) 407 self.client.connect(self.server.host, self.server.port) 547 host, port = self.client.makepasv() 548 conn = socket.create_connection((host, port), 10) 557 self.server = DummyFTPServer((HOST, 0), af=socket.AF_INET6) 560 self.client.connect(self.server.host, self.server.port) 574 host, port = self.client.makepasv() 575 conn = socket.create_connection((host, port), 10 [all...] |
test_asynchat.py | 12 HOST = test_support.HOST 68 self.connect((HOST, server_port))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_poplib.py | 16 from test.test_support import HOST 119 self.host, self.port = self.socket.getsockname()[:2] 163 self.server = DummyPOP3Server((HOST, 0)) 165 self.client = poplib.POP3(self.server.host, self.server.port) 270 self.server = DummyPOP3Server((HOST, 0)) 273 self.client = poplib.POP3_SSL(self.server.host, self.server.port) 311 pop = poplib.POP3(HOST, self.port) 321 pop = poplib.POP3(HOST, self.port, timeout=None) 328 pop = poplib.POP3(HOST, self.port, timeout=30)
|
test_httplib.py | 13 HOST = test_support.HOST 81 for header in 'Content-length', 'Host', 'Accept-encoding': 129 # Default host header on IPv6 transaction should wrapped by [] if 209 # Note that httplib does not accept user:password@ in the host-port. 221 if h != c.host: 222 self.fail("Host incorrectly parsed: %s != %s" % (h, c.host)) 224 self.fail("Port incorrectly parsed: %s != %s" % (p, c.host)) 435 self.conn = httplib.HTTPConnection(HOST, self.port [all...] |
test_socketserver.py | 27 HOST = test.test_support.HOST 91 return (HOST, 0) 297 s = MyServer((HOST, 0), MyHandler)
|
test_ftplib.py | 20 from test.test_support import HOST 219 self.host, self.port = self.socket.getsockname()[:2] 404 self.server = DummyFTPServer((HOST, 0)) 407 self.client.connect(self.server.host, self.server.port) 547 host, port = self.client.makepasv() 548 conn = socket.create_connection((host, port), 10) 557 self.server = DummyFTPServer((HOST, 0), af=socket.AF_INET6) 560 self.client.connect(self.server.host, self.server.port) 574 host, port = self.client.makepasv() 575 conn = socket.create_connection((host, port), 10 [all...] |
test_asynchat.py | 12 HOST = test_support.HOST 68 self.connect((HOST, server_port))
|
/build/core/tasks/ |
collect_gpl_sources.mk | 15 gpl_source_tgz := $(call intermediates-dir-for,PACKAGING,gpl_source,HOST,COMMON)/gpl_source.tgz
|
/external/chromium/net/http/ |
http_atom_list.h | 33 HTTP_ATOM(HOST)
|
/external/chromium_org/net/http/ |
http_atom_list.h | 33 HTTP_ATOM(HOST)
|
/external/libpcap/ |
tokdefs.h | 34 HOST = 260, 138 #define HOST 260
|
/bootable/recovery/minadbd/ |
adb.c | 37 int HOST = 0; 222 HOST ? "host" : adb_device_banner); 297 if(HOST) send_connect(t); 313 if(!HOST) send_connect(t);
|
transport_usb.c | 120 HOST = 0;
|
/build/core/ |
multi_prebuilt.mk | 97 $($(if $(prebuilt_is_host),HOST,TARGET)_OUT_INTERMEDIATE_LIBRARIES), \
|
/external/guava/guava/src/com/google/common/net/ |
HttpHeaders.java | 81 /** The HTTP Host header field name. */ 82 public static final String HOST = "Host";
|
/frameworks/base/core/java/android/os/ |
Build.java | 484 public static final String HOST = getString("ro.build.host");
|
/external/smack/src/org/xbill/DNS/ |
KEYRecord.java | 118 /** Key is owned by a host. */ 119 public static final int HOST = 0x0200; 203 flags.add(HOST, "HOST"); 270 /** A host/end entity key */ 271 public static final int OWNER_HOST = Flags.HOST;
|
/sdk/emulator/opengl/ |
common.mk | 23 emugl-begin-host-static-library = $(call emugl-begin-module,$1,HOST_STATIC_LIBRARY,HOST) 24 emugl-begin-host-shared-library = $(call emugl-begin-module,$1,HOST_SHARED_LIBRARY,HOST) 25 emugl-begin-host-executable = $(call emugl-begin-module,$1,HOST_EXECUTABLE,HOST) 100 # $3: "HOST" for a host module, empty for a target one. 105 $(error There is already a $(if $3,host,) module named $1!)\ 170 $(info . HOST=$(_emugl_HOST)) [all...] |
/cts/tools/vm-tests-tf/ |
Android.mk | 39 intermediates := $(call intermediates-dir-for,JAVA_LIBRARIES,vm-tests-tf,HOST) 44 $(vmteststf_jar): PRIVATE_INTERMEDIATES_CLASSES := $(call intermediates-dir-for,JAVA_LIBRARIES,cts-tf-dalvik-buildutil,HOST)/classes 53 # generated and compile the host side junit tests
|
/external/chromium/googleurl/src/ |
url_parse.h | 115 HOST, 153 // HOST: 7 7 169 // Username. Specified in URLs with an @ sign before the host. See |password| 173 // Not all URLs with a username have a password, as in "http://me@host/". 175 // "http://me:secret@host/" 178 // Host name. 179 Component host; member in struct:url_parse::Parsed 184 // Path, this is everything following the host name. Length will be -1 if 187 // have a 0 length path, it will be -1 in cases like "http://host?foo". 218 // authority (host) like "http". This function will not handle weird one [all...] |
/cts/suite/audio_quality/test_description/ |
processing_main.py | 206 HOST = "localhost" 210 s.bind((HOST, PORT))
|
/external/llvm/ |
shared_llvm.mk | 59 # HOST LLVM shared library build 67 # Host build pulls in all ARM, Mips, X86 components.
|