HomeSort by relevance Sort by last modified time
    Searched full:listening (Results 1 - 25 of 1143) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/
ListeningPointExt.java 12 * Create a contact for this listening point.
14 * @return a contact header corresponding to this listening point.
24 * via this listening point. This method can be used to send out a period
32 * Create a Via header for this listening point.
34 * @return a via header corresponding to this listening point. Branch ID is set to NULL.
  /external/glide/library/src/main/java/com/bumptech/glide/manager/
Lifecycle.java 4 * An interface for listening to Activity/Fragment lifecycle events.
ConnectivityMonitor.java 9 * An interface for listening to network connectivity events picked up by the monitor.
  /external/curl/tests/data/
test19 24 attempt connect to non-listening socket
test702 26 Attempt connect to non-listening HTTP server via SOCKS4 proxy
test703 26 Attempt connect to non-listening HTTP server via SOCKS5 proxy
test704 23 Attempt connect to non-listening SOCKS4 proxy
test705 23 Attempt connect to non-listening SOCKS5 proxy
test1233 11 # Assuming there's nothing listening on port 1
  /packages/apps/Settings/src/com/android/settings/dashboard/
SummaryLoader.java 75 // Make sure we aren't listening.
102 public void setListening(boolean listening) {
103 if (mListening == listening) return;
104 mListening = listening;
111 mWorker.obtainMessage(Worker.MSG_SET_LISTENING, listening ? 1 : 0, 0).sendToTarget();
169 private synchronized void setListeningW(boolean listening) {
170 if (mWorkerListening == listening) return;
171 mWorkerListening = listening;
172 if (DEBUG) Log.d(TAG, "Listening " + listening);
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.h 126 int tcpsd; // listening TCP socket for dns requests
127 int udpsd; // listening UDP socket for dns requests
128 int tlssd; // listening TCP socket for private browsing
129 int llq_tcpsd; // listening TCP socket for llq service
130 int llq_udpsd; // listening UDP socket for llq service
135 mDNSIPPort private_port; // listening port for private messages
136 mDNSIPPort llq_port; // listening port for llq
149 int LLQEventListenSock; // the main thread listening on EventListenSock, indicating that the zone has changed
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
Listenable.java 19 /** Common interface for components with an active listening state. **/
21 void setListening(boolean listening);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
SecureSetting.java 56 public void setListening(boolean listening) {
57 if (listening == mListening) return;
58 mListening = listening;
59 if (listening) {
PagedTileLayout.java 86 public void setListening(boolean listening) {
87 if (mListening == listening) return;
88 mListening = listening;
90 mPages.get(mPosition).setListening(listening);
92 mPages.get(mPosition + 1).setListening(listening);
95 // Make sure no pages are listening.
103 * Sets individual pages to listening or not. If offPage it will set
104 * the next page after position to listening as well since we are in between
111 // Clear out the last pages from listening.
116 // Set the new pages to listening
    [all...]
GlobalSetting.java 48 public void setListening(boolean listening) {
49 if (listening) {
  /external/tpm2/
TPMCmds.c 40 fprintf_s(stderr, "%s - Starts the TPM server listening on port %d\n",
43 "%s PortNum - Starts the TPM server listening on port PortNum\n",
53 // main: register the interface, start listening for clients
  /external/autotest/server/cros/ap_configurators/basic_auth_extension/
background.js 11 bkg.console.log("Listening")
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingListeningExecutorService.java 22 * A listening executor service which forwards all its method calls to another
23 * listening executor service. Subclasses should override one or more methods to
  /external/webrtc/webrtc/test/channel_transport/
udp_socket_manager_wrapper.h 33 // Start listening to sockets that have been registered via the
36 // Stop listening to sockets.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
AirplaneModeTile.java 114 public void setListening(boolean listening) {
115 if (mListening == listening) return;
116 mListening = listening;
117 if (listening) {
124 mSetting.setListening(listening);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
TransportWrapper.java 40 * Starts listening for connection on given or default address.
43 * @return string representation of listening address
48 * Stops listening for connection on current address.
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
Observable.java 38 * @param callback The callback to start listening.
43 * Removes a callback from those listening for changes.
44 * @param callback The callback that should stop listening.
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SpeechOrbView.java 51 * Sets the view to display listening state.
65 * Sets the view to display the not-listening state.
76 * Sets the sound level while listening to speech.
  /system/bt/service/ipc/
ipc_handler_linux.h 49 // Starts listening for incoming connections. Posted on |thread_| by Run().
73 // We use a dedicated thread for listening to incoming connections and
77 // Whether or not the listening thread should continue to run.
  /development/tools/axl/
udpServer.py 17 print 'Listening for requests on port %s ...' % port

Completed in 901 milliseconds

1 2 3 4 5 6 7 8 91011>>