HomeSort by relevance Sort by last modified time
    Searched full:connected (Results 351 - 375 of 5403) sorted by null

<<11121314151617181920>>

  /system/media/brillo/audio/audioservice/aidl/android/brillo/brilloaudioservice/
IBrilloAudioService.aidl 24 * devices currently connected to the system as well as to control volume.
36 // Get the list of devices connected. If flag is GET_DEVICES_INPUTS, then
  /system/media/brillo/audio/audioservice/
audio_service_callback.h 42 // Callback function triggered when a device is connected.
68 // Callback when devices are connected.
  /system/netd/server/
SockDiag.h 67 // Destroys all "live" (CONNECTED, SYN_SENT, SYN_RECV) TCP sockets for the given UID ranges.
70 // Destroys all "live" (CONNECTED, SYN_SENT, SYN_RECV) TCP sockets that no longer have
  /test/vts/agents/hal/
AgentRequestHandler.h 95 // the currently opened, connected service name.
99 // the socket client of a launched or connected driver.
  /tools/test/connectivity/tools/lab/
README.md 28 connected: whether the network is connected (list of bools)
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
DeviceManagerFuncTest.java 39 * Note: device under test must have a valid IP, that can be connected to from host machine
72 * Note: device under test must have a valid IP, that can be connected to from host machine
  /frameworks/base/core/java/android/bluetooth/
BluetoothSocket.java 39 * A connected or connecting Bluetooth socket.
63 * <p>Once the socket is connected, whether initiated as a client or accepted
67 * automatically connected to the socket.
141 CONNECTED,
155 * @param fd fd to use for connected socket, or -1 for a new socket
172 * @param fd fd to use for connected socket, or -1 for a new socket
236 as.mSocketState = SocketState.CONNECTED;
256 * @param fd fd to use for connected socket, or -1 for a new socket
294 * Get the remote device this socket is connecting, or connected, to.
304 * connected, but operations on that stream will throw IOException unti
    [all...]
BluetoothHeadset.java 45 * <p> Android only supports one connected Bluetooth Headset at a time.
234 * Headset state when SCO audio is not connected.
250 * Headset state when SCO audio is connected.
394 * headset/handsfree profile. The API will automatically disconnect connected
398 * device is already connected or Bluetooth is not turned on.
431 * Bluetooth device is not in connected state etc. When this API returns,
601 * @return false if there is no headset connected of if the
602 * connected headset doesn't support voice recognition
626 * @return false if there is no headset connected
644 * Check if Bluetooth SCO audio is connected
    [all...]
  /external/autotest/client/cros/graphics/
graphics_utils.py 491 r'^(\d+)\s+\d+\s+(connected|disconnected)\s+(\S+)\s+\d+x\d+\s+\d+\s+\d+')
506 'connected', # boolean
529 if connector.connected:
536 Parses output of modetest to determine the number of connected displays
537 @return: The number of connected displays
539 connected = 0
542 if connector.connected:
543 connected = connected + 1
545 return connected
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
AsynchronousSocketChannel.java 42 * not yet connected. A connected {@code AsynchronousSocketChannel} is created
47 * <p> A newly-created channel is connected by invoking its {@link #connect connect}
48 * method; once connected, a channel remains connected until it is closed. Whether
49 * or not a socket channel is connected may be determined by invoking its {@link
235 * If this channel is not yet connected
255 * If this channel is not yet connected
266 * Returns the remote address to which this channel's socket is connected.
268 * <p> Where the channel is bound and connected to an Internet Protoco
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_session.cpp 88 static void Hotplug(const struct hwc_procs* procs, int disp, int connected) {
144 // HDMI is primary display. If already connected, then create it and store in
145 // primary display slot. If not connected, create a NULL display for now.
290 // If external display is connected, ignore virtual display content list.
291 // If virtual display content list is valid, connect virtual display if not connected.
292 // If virtual display content list is invalid, disconnect virtual display if connected.
304 bool connected = (hwc_session->hwc_display_[HWC_DISPLAY_VIRTUAL] != NULL); local
306 if (valid_content && !connected) {
308 } else if (!valid_content && connected) {
322 DLOGI("Display[%d] connected. content_list is null", dpy)
1318 int connected = GetEventValue(uevent_data, length, "SWITCH_STATE="); local
    [all...]
  /external/devlib/doc/
connection.rst 25 Transfer a file from the host machine to the connected device.
28 :param dest: path of to the file on the connected device.
34 Transfer a file, or files matching a glob pattern, from the connected device
37 :param source: path of to the file on the connected device. If ``dest`` is a
45 Execute the specified command on the connected device and return its output.
51 :param check_exit_code: If ``True`` the exit code (on connected device)
55 unrooted connected devices.
59 Execute the command on the connected device, invoking it via subprocess on the host.
68 unrooted connected devices.
103 string for USB-connected devices, or an ip address/por
    [all...]
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/common/
UtilsTest.java 153 // GIVEN the device is currently connected to mobile network
159 // GIVEN the device is currently connected to wifi
173 // GIVEN the device is currently connected to mobile network
175 // WHEN checking whether connected to wifi
179 // GIVEN the device is currently connected to wifi
181 // WHEN checking whether connected to wifi
187 // WHEN checking whether connected to wifi
193 // GIVEN the device is connected to a network.
409 private void setCurrentNetworkMock(int type, boolean connected) {
412 connected ? NetworkInfo.DetailedState.CONNECTE
    [all...]
  /external/opencv/cvaux/src/
cvclique.cpp 105 void _FillAdjMatrix( CvGraph* graph, int** connected, int reverse )
112 connected[i][j] = 0|reverse;
114 //memset( connected[i], 0, sizeof(int)*graph->total );
118 connected[i][i] = 1;
122 connected[i][NUMBER(v)] = 1^reverse;
264 int** connected = finder->adj_matr;
314 if ( !connected[p][old[j]] )
360 if (connected[sel][old[i]])
375 if (connected[sel][old[i]])
467 if( !connected[fixp[k]][old[s[k]]]
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/
A2dpSinkStateMachine.java 25 * CONNECTED | | CONNECT
27 * (Connected -- See A2dpSinkStreamHandler)
83 // 3. Connected: The connection is established. The audio connection is in Idle state.
86 private Connected mConnected;
97 // mCurrentDevice is the device connected before the state changes
98 // mTargetDevice is the device to be connected
107 // Connected, Connected state
142 mConnected = new Connected();
269 logw("A2DP Connected from Disconnected state")
    [all...]
  /packages/apps/Car/Hvac/src/com/android/car/hvac/
HvacController.java 170 Log.e(TAG, "Car not connected in HVAC");
185 Log.e(TAG, "Car not connected in onServiceConnected");
441 Log.e(TAG, "Car not connected in fetchTemperature");
471 Log.e(TAG, "Car not connected in setTemperature");
497 Log.e(TAG, "Car not connected in setSeatWarmerLevel");
513 Log.e(TAG, "Car not connected in fetchFanSpeed");
541 Log.e(TAG, "Car not connected in setFanSpeed");
561 Log.e(TAG, "Car not connected in fetchDefrosterState");
591 Log.e(TAG, "Car not connected in setDeforsterState");
606 Log.e(TAG, "Car not connected in fetchAcState")
    [all...]
  /frameworks/base/media/java/android/media/browse/
MediaBrowser.java 276 * Returns whether the browser is connected to the service.
283 * Gets the service component that the media browser is connected to.
287 throw new IllegalStateException("getServiceComponent() called while not connected" +
300 * @throws IllegalStateException if not connected.
304 throw new IllegalStateException("getRoot() called while not connected (state="
313 * @throws IllegalStateException if not connected.
317 throw new IllegalStateException("getExtras() called while not connected (state="
332 * @throws IllegalStateException if not connected.
336 throw new IllegalStateException("getSessionToken() called while not connected (state="
346 * The list of subscriptions is maintained even when not connected and i
    [all...]
  /compatibility/cdd/5_multimedia/
5_8_secure-media.md 12 as HDCP 2.x or higher for the displays connected through wireless protocols
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/jobscheduler/
ChargingConstraintTestActivity.java 36 // Time in milliseconds to wait after power is connected for the phone
83 // Register receiver for connected/disconnected power events.
202 /** Run test for when the <bold>device is not connected to power.</bold>. */
218 /** Run test for when the <bold>device is connected to power.</bold> */
  /cts/common/device-side/preconditions/src/com/android/compatibility/common/preconditions/
WifiHelper.java 25 * WifiHelper is used to check whether the device is connected to WiFi.
  /cts/hostsidetests/jvmti/base/app/src/android/jvmti/cts/
JvmtiTestBase.java 30 * Base class for JVMTI tests. Ensures that the agent is connected for the tests. If you
  /developers/build/prebuilts/gradle/BasicMediaRouter/Application/src/main/res/values/
base-strings.xml 29 Once connected, use the "Change Color" button to change the background color of the secondary screen.
  /developers/build/prebuilts/gradle/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/fragments/
DiscoveryFragment.java 29 * A simple fragment with two buttons to show connected phones and watches
  /developers/build/prebuilts/gradle/FindMyPhone/Application/src/main/res/values/
base-strings.xml 26 it is still connected to your wearable, you can also start an activity on the wearable to sound an
  /developers/build/prebuilts/gradle/FindMyPhone/Wearable/src/main/java/com/example/android/wearable/findphone/
DisconnectListenerService.java 37 * need to distinguish the case that the wear device and the phone are connected directly from all
39 * capability and we need to look for connected nodes that provide this capability AND are nearby,
69 // "find_me" capability and are directly connected.
102 // we are only considering those nodes that are directly connected

Completed in 610 milliseconds

<<11121314151617181920>>