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

1 2

  /external/python/cpython2/Doc/includes/
mp_webserver.py 43 def runpool(address, number_of_processes):
45 server = HTTPServer(address, RequestHandler)
57 ADDRESS = ('localhost', 8000)
61 (ADDRESS[0], ADDRESS[1], NUMBER_OF_PROCESSES)
65 runpool(ADDRESS, NUMBER_OF_PROCESSES)
  /external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
ExecutionDataClient.java 32 private static final String ADDRESS = "localhost";
48 final Socket socket = new Socket(InetAddress.getByName(ADDRESS), PORT);
ExecutionDataServer.java 37 private static final String ADDRESS = "localhost";
51 InetAddress.getByName(ADDRESS));
  /external/python/cpython3/Lib/test/test_asyncio/
test_windows_events.py 49 ADDRESS = r'\\.\pipe\test_double_bind-%s' % os.getpid()
50 server1 = windows_events.PipeServer(ADDRESS)
52 windows_events.PipeServer(ADDRESS)
60 ADDRESS = r'\\.\pipe\_test_pipe-%s' % os.getpid()
64 asyncio.Protocol, ADDRESS)
67 UpperProto, ADDRESS)
76 lambda: protocol, ADDRESS)
93 asyncio.Protocol, ADDRESS)
  /external/ltp/testcases/network/multicast/mc_member/
mc_member 48 ADDRESS=$DIGIT.$DIGIT.$DIGIT.$DIGIT
60 tst_resm TINFO "Running mc_member_e on $ADDRESS"
61 mc_member_test -j -g $GLIST -s 30 -i $ADDRESS >/dev/null 2>&1
  /external/mdnsresponder/mDNSShared/
dnsextd_lexer.l 59 address return ADDRESS;
dnsextd_parser.y 105 %token ADDRESS
178 NAMESERVER ADDRESS networkaddress
182 NAMESERVER ADDRESS networkaddress PORT NUMBER
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
AgentOptions.java 135 * {@link AgentOptions#ADDRESS} and {@link AgentOptions#PORT}.
142 * {@link AgentOptions#ADDRESS} and {@link AgentOptions#PORT} attribute.
155 * The IP address or DNS name the tcpserver binds to or the tcpclient
158 public static final String ADDRESS = "address";
161 * Default value for the "address" agent option.
194 OUTPUT, ADDRESS, PORT, CLASSDUMPDIR, JMX);
468 * Gets the hostname or IP address to listen to when output is
472 * @return Hostname or IP address
475 return getOption(ADDRESS, DEFAULT_ADDRESS)
    [all...]
  /cts/tests/tests/telephonyprovider/src/android/telephonyprovider/cts/
ThreadsTest.java 68 private Uri saveToTelephony(long threadId, String address, String body) {
71 contentValues.put(Telephony.Sms.ADDRESS, address);
  /development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/
MainActivity.java 84 SmsQuery.PROJECTION[SmsQuery.ADDRESS], SmsQuery.PROJECTION[SmsQuery.BODY] };
104 * Dummy sendSms method, would need the "to" address to actually send a message :)
203 Inbox.ADDRESS,
210 int ADDRESS = 1;
  /cts/tests/tests/provider/src/android/provider/cts/
SmsBackupRestoreTest.java 56 private static final String SMS_SELECTION = Telephony.Sms.ADDRESS + " = ? and "
64 private static final String[] MMS_ADDR_PROJECTION = new String[] { Telephony.Mms.Addr.ADDRESS };
248 addrValues.put(Telephony.Mms.Addr.ADDRESS, addresses[i]);
256 smsRow.put(Telephony.Sms.ADDRESS, addressBody[0]);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DataUtil.java 65 values.put(CommonDataKinds.Email.ADDRESS, email);
  /developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java 50 // display name, email address and phone number. In this case, the query was extracted
101 int emailColumnIndex = cursor.getColumnIndex(CommonDataKinds.Email.ADDRESS);
127 tv.append("\tEmail Address: " + cursor.getString(emailColumnIndex) + "\n");
  /developers/samples/android/content/contacts/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java 50 // display name, email address and phone number. In this case, the query was extracted
101 int emailColumnIndex = cursor.getColumnIndex(CommonDataKinds.Email.ADDRESS);
127 tv.append("\tEmail Address: " + cursor.getString(emailColumnIndex) + "\n");
  /development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/
ContactablesLoaderCallbacks.java 50 // display name, email address and phone number. In this case, the query was extracted
101 int emailColumnIndex = cursor.getColumnIndex(CommonDataKinds.Email.ADDRESS);
127 tv.append("\tEmail Address: " + cursor.getString(emailColumnIndex) + "\n");
  /external/e2fsprogs/e2fsck/
mtrace.h 20 The author may be reached (Email) at the address mike@ai.mit.edu,
153 /* Address to block number and vice versa. */
155 #define ADDRESS(B) ((__ptr_t) (((B) - 1) * BLOCKSIZE + _heapbase))
177 __ptr_t aligned; /* The address that memaligned returned. */
178 __ptr_t exact; /* The address that malloc returned. */
  /external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/qps/
OpenLoopClient.java 23 import static io.grpc.benchmarks.qps.ClientConfiguration.ClientParam.ADDRESS;
67 ADDRESS, TARGET_QPS, CLIENT_PAYLOAD, SERVER_PAYLOAD, TLS,
AsyncClient.java 22 import static io.grpc.benchmarks.qps.ClientConfiguration.ClientParam.ADDRESS;
307 ADDRESS, CHANNELS, OUTSTANDING_RPCS, CLIENT_PAYLOAD, SERVER_PAYLOAD,
ClientConfiguration.java 50 SocketAddress address; field in class:ClientConfiguration
69 return Utils.newClientChannel(transport, address, tls, testca, authorityOverride,
111 && config.testca && config.address instanceof InetSocketAddress) {
112 // Override the socket address with the host from the testca.
113 InetSocketAddress address = (InetSocketAddress) config.address; local
114 config.address = TestUtils.testServerAddress(address.getHostName(),
115 address.getPort());
119 // Verify that the address type is correct for the transport type
    [all...]
ServerConfiguration.java 42 SocketAddress address; field in class:ServerConfiguration
75 // Verify that the address type is correct for the transport type.
76 config.transport.validateSocketAddress(config.address);
113 * Validates the given address for this transport.
115 * @throws IllegalArgumentException if the given address is invalid for this transport.
117 void validateSocketAddress(SocketAddress address) {
118 if (!socketAddressValidator.isValidSocketAddress(address)) {
120 "Invalid address " + address + " for transport " + this);
141 ADDRESS("STR", "Socket address (host:port) or Unix Domain Socket file name
145 SocketAddress address = Utils.parseSocketAddress(value); local
    [all...]
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactDetailFragment.java 82 // The geo Uri scheme prefix, used with Intent.ACTION_VIEW to form a geographical address
328 // This query loads contact address details, see
370 // This query loads the contact address details. More than
371 // one contact address is possible, so move each one to a
376 // be created once and used for each address.
389 // Builds the address layout
393 data.getString(ContactAddressQuery.ADDRESS));
394 // Adds the new address layout to the details layout
398 // If nothing found, adds an empty address layout
412 * Builds an empty address layout that just shows that no addresse
    [all...]
  /external/mesa3d/src/mesa/program/
program_lexer.l 171 ADDRESS {
173 return_token_or_IDENTIFIER(require_ARB_vp, ADDRESS);
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h 177 #define ADDRESS ADDRESS64
184 } ADDRESS,*LPADDRESS;
257 ADDRESS AddrPC;
258 ADDRESS AddrReturn;
259 ADDRESS AddrFrame;
260 ADDRESS AddrStack;
267 ADDRESS AddrBStore;
273 typedef DWORD64 (WINAPI *PGET_MODULE_BASE_ROUTINE64)(HANDLE hProcess,DWORD64 Address);
287 typedef DWORD (WINAPI *PGET_MODULE_BASE_ROUTINE)(HANDLE hProcess,DWORD Address);
349 DWORD64 Address;
    [all...]
  /developers/build/prebuilts/gradle/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
CalendarQueryService.java 87 private static final String CONTACT_SELECTION = Email.ADDRESS + " = ?";
  /developers/samples/android/deprecated/wearable/wear/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
CalendarQueryService.java 87 private static final String CONTACT_SELECTION = Email.ADDRESS + " = ?";

Completed in 3504 milliseconds

1 2