Home
last modified time | relevance | path

Searched refs:accept (Results 1 – 25 of 79) sorted by relevance

1234

/frameworks/base/core/java/android/bluetooth/
DBluetoothServerSocket.java90 public BluetoothSocket accept() throws IOException { in accept() method in BluetoothServerSocket
91 return accept(-1); in accept()
104 public BluetoothSocket accept(int timeout) throws IOException { in accept() method in BluetoothServerSocket
105 return mSocket.accept(timeout); in accept()
DScoSocket.java110 public synchronized boolean accept() { in accept() method in ScoSocket
DBluetoothDeviceProfileState.java756 private boolean handleIncomingConnection(int command, boolean accept) { in handleIncomingConnection() argument
758 Log.i(TAG, "handleIncomingConnection:" + command + ":" + accept); in handleIncomingConnection()
761 if (!accept) { in handleIncomingConnection()
775 if (!accept) { in handleIncomingConnection()
DBluetoothSocket.java283 /*package*/ BluetoothSocket accept(int timeout) throws IOException { in accept() method in BluetoothSocket
/frameworks/base/core/java/android/text/method/
DNumberKeyListener.java45 char[] accept = getAcceptedChars(); in filter() local
50 if (!ok(accept, source.charAt(i))) { in filter()
73 if (!ok(accept, source.charAt(j))) { in filter()
81 protected static boolean ok(char[] accept, char c) { in ok() argument
82 for (int i = accept.length - 1; i >= 0; i--) { in ok()
83 if (accept[i] == c) { in ok()
/frameworks/base/core/java/android/net/
DLocalServerSocket.java90 public LocalSocket accept() throws IOException in accept() method in LocalServerSocket
94 impl.accept (acceptedImpl); in accept()
DLocalSocketImpl.java176 private native FileDescriptor accept in accept() method in LocalSocketImpl
273 protected void accept(LocalSocketImpl s) throws IOException in accept() method in LocalSocketImpl
279 s.fd = accept(fd, s); in accept()
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DDelegateClassAdapterTest.java94 cr.accept(cv, 0 /* flags */); in testNoOp()
151 cr.accept(cv, 0 /* flags */); in testConstructorsNotSupported()
165 cr.accept(cv, 0 /* flags */); in testDelegateNative()
212 cr.accept(cvOuter, 0 /* flags */); in testDelegateInner()
220 cr.accept(cvInner, 0 /* flags */); in testDelegateInner()
311 cr.accept(cw, 0); in findClass()
394 cr2.accept((ClassVisitor) tcv, 0 /* flags */); in dumpGeneratedClass()
DClassHasNativeVisitorTest.java40 cr.accept(cv, 0 /* flags */); in testHasNative()
52 cr.accept(cv, 0 /* flags */); in testHasNoNative()
DAsmAnalyzerTest.java194 cr.accept(visitor, 0 /* flags */); in testDependencyVisitor()
207 cr2.accept(visitor, 0 /* flags */); in testDependencyVisitor()
222 cr2.accept(visitor, 0 /* flags */); in testDependencyVisitor()
/frameworks/base/core/java/com/android/internal/nfc/
DLlcpServiceSocket.java102 public LlcpSocket accept() throws IOException, LlcpException { in accept() method in LlcpServiceSocket
105 int handle = mService.accept(mHandle); in accept()
/frameworks/base/tests/CoreTests/android/core/
DSocketTest.java75 s1 = ss.accept(); in testSocketSimple()
122 Socket sock = serverSock.accept(); in testSetReuseAddress()
169 s.accept(); in testTimeoutException()
DURLTest.java93 Socket socket = server.accept(); in run()
/frameworks/base/core/java/android/nfc/
DILlcpServiceSocket.aidl24 int accept(int nativeHandle); in accept() method
/frameworks/base/core/java/android/webkit/
DFrameLoader.java348 String accept = mHeaders.get("Accept"); in populateStaticHeaders() local
349 if (accept == null || accept.length() == 0) { in populateStaticHeaders()
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
DForwardServer.java95 Socket localSocket = socket.accept(); in run()
/frameworks/base/core/tests/coretests/src/android/net/
DLocalSocketTest.java44 ls1 = ss.accept(); in testBasic()
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DAsmGenerator.java332 cr.accept(cv, 0 /* flags */);
366 cr.accept(cv, 0 /* flags */); in hasNativeMethods()
DAsmAnalyzer.java285 cr.accept(visitor, 0 /* flags */); in findDeps()
301 cr.accept(visitor, 0 /* flags */); in findDeps()
419 sr.accept(this); in considerSignature()
/frameworks/base/docs/html/guide/topics/ui/notifiers/
Dindex.jd49 out, and does not accept interaction events. Because a toast can be created from a background
54 to the screen. A toast can not accept user interaction events; if you'd like
Dtoasts.jd11 does not take focus (or pause the current activity), so it cannot accept user input</li>
32 out, and does not accept interaction events.</p>
/frameworks/base/docs/html/guide/topics/wireless/
Dbluetooth.jd419 you want your application to host a server socket that will accept incoming
473 discarded, unless you want to accept more connections.</p>
489 <p>Here's the basic procedure to set up a server socket and accept a
508 {@link android.bluetooth.BluetoothServerSocket#accept()}.
513 android.bluetooth.BluetoothServerSocket#accept()} will
517 <li>Unless you want to accept additional connections, call
521 android.bluetooth.BluetoothServerSocket#accept()}. Unlike TCP/IP, RFCOMM only allows one
529 <p>The {@link android.bluetooth.BluetoothServerSocket#accept()} call should not
535 android.bluetooth.BluetoothServerSocket#accept()}, call {@link
567 socket = mmServerSocket.accept();
[all …]
/frameworks/base/services/java/com/android/server/
DViewServer.java178 Socket client = mServer.accept(); in run()
/frameworks/base/cmds/installd/
Dinstalld.c257 s = accept(lsocket, &addr, &alen); in main()
/frameworks/base/docs/html/sdk/
Dterms.jd21 …t agree to this License Agreement. You may not use the SDK if you do not accept this License Agree…
24 2.2 You can accept this License Agreement by:
27 …(A) clicking to accept or agree to this License Agreement, where this option is made available to …
33 …2.3 You may not use the SDK and may not accept the Licensing Agreement if you are a person barred …
36 …cense Agreement. If you do not have the requisite authority, you may not accept the Licensing Agre…

1234