HomeSort by relevance Sort by last modified time
    Searched defs:listen (Results 1 - 25 of 63) sorted by null

1 2 3

  /bionic/libc/arch-arm/syscalls/
listen.S 5 ENTRY(listen) function
14 END(listen)
  /bionic/libc/arch-x86/syscalls/
listen.S 5 .type listen, @function
6 .globl listen
9 listen: label
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
TcpStream.cpp 50 int TcpStream::listen(unsigned short port) function in class:TcpStream
UnixStream.cpp 89 int UnixStream::listen(unsigned short port) function in class:UnixStream
Win32PipeStream.cpp 71 * So listen() is a no-op, and accept() really creates the pipe handle.
76 int Win32PipeStream::listen(unsigned short port) function in class:Win32PipeStream
  /frameworks/base/obex/javax/obex/
ObexTransport.java 60 void listen() throws IOException; method in interface:ObexTransport
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppRfcommTransport.java 83 public void listen() throws IOException { method in class:BluetoothOppRfcommTransport
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapRfcommTransport.java 82 public void listen() throws IOException { method in class:BluetoothPbapRfcommTransport
  /libcore/luni/src/main/java/java/net/
SocketImpl.java 210 protected abstract void listen(int backlog) throws IOException; method in class:SocketImpl
PlainSocketImpl.java 274 protected void listen(int backlog) throws IOException { method in class:PlainSocketImpl
276 // Do nothing for a SOCKS connection. The listen occurs on the
281 Libcore.os.listen(fd, backlog);
  /bionic/libc/unistd/
socketcalls.c 94 int listen(int s, int backlog) function
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellLocationTest.java 54 mTelephonyManager.listen(mListener, PhoneStateListener.LISTEN_NONE);
95 mTelephonyManager.listen(mListener, PhoneStateListener.LISTEN_CELL_LOCATION);
PhoneStateListenerTest.java 64 mTelephonyManager.listen(mListener, PhoneStateListener.LISTEN_NONE);
107 mTelephonyManager.listen(mListener, PhoneStateListener.LISTEN_SERVICE_STATE);
154 mTelephonyManager.listen(mListener, PhoneStateListener.LISTEN_SIGNAL_STRENGTH);
196 mTelephonyManager.listen(
239 mTelephonyManager.listen(
282 mTelephonyManager.listen(mListener, PhoneStateListener.LISTEN_CELL_LOCATION);
324 mTelephonyManager.listen(mListener, PhoneStateListener.LISTEN_CALL_STATE);
366 mTelephonyManager.listen(
409 mTelephonyManager.listen(mListener, PhoneStateListener.LISTEN_DATA_ACTIVITY);
  /external/bluetooth/bluez/test/
apitest 86 listen = False variable in class:Tester
112 self.listen = True
119 if not (args or self.listen):
174 print ' -l Listen for events (no command required)'
413 if self.listen:
432 elif not self.listen:
437 if self.listen:
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketImplFactoryTest.java 163 protected void listen(int arg0) throws IOException { method in class:OldSocketImplFactoryTest.MockSocketImpl
  /packages/apps/Phone/src/com/android/phone/
OtaStartupReceiver.java 116 telephonyManager.listen(mPhoneStateListener, PhoneStateListener.LISTEN_OTASP_CHANGED);
  /cts/tests/tests/permission/src/android/permission/cts/
NoLocationPermissionTest.java 59 * Verify that listen or get cell location requires permissions.
69 telephonyManager.listen(phoneStateListener, PhoneStateListener.LISTEN_CELL_LOCATION);
70 fail("TelephonyManager.listen(LISTEN_CELL_LOCATION) did not" +
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
SocketImplTest.java 120 protected void listen(int backlog) throws IOException { method in class:SocketImplTest.MockSocketImpl
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
InspectorServerQt.cpp 109 void InspectorServerQt::listen(quint16 port) function in class:WebCore::InspectorServerQt
115 m_tcpServer->listen(QHostAddress::Any, port);
  /frameworks/base/core/java/android/net/
LocalSocketImpl.java 189 * but the caller can verify socket state by calling listen().
257 protected void listen(int backlog) throws IOException method in class:LocalSocketImpl
  /frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java 266 // TODO: Listen to the preference change of GPS, Wifi etc,
375 mTelephonyManager.listen(mPhoneStateListener, PhoneStateListener.LISTEN_SERVICE_STATE);
381 mTelephonyManager.listen(mPhoneStateListener, PhoneStateListener.LISTEN_NONE);
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 67 # undef listen macro
68 # define listen listen_used_without_including_sys_socket_h macro
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 1041 public void listen(PhoneStateListener listener, int events) { method in class:TelephonyManager
    [all...]
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 78 public void listen(FileDescriptor fd, int backlog) throws ErrnoException { os.listen(fd, backlog); } method in class:ForwardingOs
  /external/kernel-headers/original/linux/
net.h 55 #define __SO_ACCEPTCON (1 << 16) /* performed a listen */
148 int (*listen) (struct socket *sock, int len); member in struct:proto_ops
258 SOCKCALL_WRAP(name, listen, (struct socket *sock, int len), (sock, len)) \
283 .listen = __lock_##name##_listen, \

Completed in 589 milliseconds

1 2 3