Searched refs:accept (Results 26 - 40 of 40) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/os/
H A DZygoteInit.java199 return new ZygoteConnection(sServerSocket.accept());
202 "IOException during accept()", ex);
606 * Runs the zygote in accept-and-fork mode. In this mode, each peer
624 // The child does not accept any more connections
/frameworks/base/core/jni/
H A Dandroid_bluetooth_BluetoothAudioGateway.cpp198 int nsk = accept(ag_fd, (struct sockaddr *) &raddr, &alen);
200 LOGE("Error on accept from socket fd %d: %s (%d).",
217 LOGI("Successful accept() on AG socket %d: new socket %d, address %s, RFCOMM channel %d",
H A Dandroid_bluetooth_ScoSocket.cpp121 bool is_accept; // accept (listening) or connect (outgoing) thread
595 nsk = accept(sk, (struct sockaddr *)&addr, &addr_sz);
597 LOGE("%s: accept() failed: %s", __FUNCTION__, strerror(errno));
H A Dandroid_net_LocalSocketImpl.cpp159 ** accept (FileDescriptor fd, LocalSocketImpl s)
188 ret = accept(fd, &(sa.address), &addrlen);
893 {"accept", "(Ljava/io/FileDescriptor;Landroid/net/LocalSocketImpl;)Ljava/io/FileDescriptor;", (void*)socket_accept},
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java93 /* Set the number of connections the server will accept before shutdown */
183 * Call this to specify the maximum number of sockets to accept
184 * @param limit The number of sockets to accept
256 // Log.d(LOGTAG, "TestWebServer run() calling accept()");
257 Socket s = ss.accept();
278 log("SocketException in AcceptThread: probably closed during accept");
293 this does not cause the SocketException from ss.accept
371 * Called by the accept thread when it's closing. Potentially unblocks
381 * been identified by the accept thread upon which it will
H A DSSLSocketTest.java222 // These two don't accept keep-alive
239 // These two don't accept keep-alive
261 // These two don't accept keep-alive
281 // These two don't accept keep-alive
301 // These two don't accept keep-alive
670 SSLSocket clientSocket = (SSLSocket) serverSocket.accept();
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DRenameClassAdapter.java205 reader.accept(new RenameSignatureAdapter(writer));
/frameworks/base/core/java/android/webkit/
H A DCookieManager.java262 * @param accept TRUE if accept cookie
264 public synchronized void setAcceptCookie(boolean accept) { argument
265 mAcceptCookie = accept;
270 * @return TRUE if accept cookie
H A DCacheManager.java561 public boolean accept(File dir, String filename) {
/frameworks/base/cmds/keystore/
H A Dkeystore.c561 while ((the_socket = accept(control_socket, NULL, 0)) != -1) {
587 LOGE("accept: %s", strerror(errno));
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCommandsInterface.java1222 * @param accept true if the call is to be accepted, false otherwise.
1225 public void handleCallSetupRequestFromSim(boolean accept, Message response); argument
H A DRIL.java1798 boolean accept, Message response) {
1807 param[0] = accept ? 1 : 0;
1797 handleCallSetupRequestFromSim( boolean accept, Message response) argument
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java819 boolean accept, Message response) {
818 handleCallSetupRequestFromSim( boolean accept, Message response) argument
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java178 sock = debugSocket.accept();
594 "MmiCode 2: accept ringing call");
/frameworks/base/services/java/com/android/server/
H A DPackageManagerService.java6036 public boolean accept(File dir, String name) {

Completed in 3454 milliseconds

12