HomeSort by relevance Sort by last modified time
    Searched refs:connected (Results 1 - 25 of 845) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/interfaces/secure_element/1.0/
ISecureElementHalCallback.hal 20 onStateChange(bool connected);
  /frameworks/base/core/java/android/app/
IServiceConnection.aidl 24 void connected(in ComponentName name, IBinder service, boolean dead);
  /frameworks/hardware/interfaces/displayservice/1.0/
IEventCallback.hal 27 * @param connected Current state of hotplug.
29 oneway onHotplug(uint64_t timestamp, bool connected);
  /frameworks/base/core/java/android/hardware/hdmi/
HdmiHotplugEvent.java 41 public HdmiHotplugEvent(int port, boolean connected) {
43 mConnected = connected;
58 * @return true if the device gets connected; otherwise false
98 boolean connected = p.readByte() == 1;
99 return new HdmiHotplugEvent(port, connected);
  /external/autotest/client/cros/chameleon/
chameleon_port_finder.py 14 ChameleonPorts = namedtuple('ChameleonPorts', 'connected failed')
19 Responsible for finding all ports connected to the chameleon board.
21 It does not verify if these ports are connected to DUT.
33 self.connected = None
39 @returns a named tuple ChameleonPorts() containing a list of connected
43 self.connected = self.chameleon_board.get_all_ports()
46 return ChameleonPorts(self.connected, self.failed)
55 connected_ports = self.find_all_ports().connected
69 if self.connected is None:
71 elif self.connected == []
    [all...]
  /hardware/qcom/display/msm8996/hdmi_cec/
QHDMIClient.cpp 45 void QHDMIClient::onHdmiHotplug(int connected)
47 ALOGD("%s: HDMI connected event connected: %d", __FUNCTION__, connected);
48 cec_hdmi_hotplug(mCtx, connected);
  /hardware/qcom/display/msm8998/hdmi_cec/
QHDMIClient.cpp 45 void QHDMIClient::onHdmiHotplug(int connected)
47 ALOGD("%s: HDMI connected event connected: %d", __FUNCTION__, connected);
48 cec_hdmi_hotplug(mCtx, connected);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
DisplayAnalyzer.h 36 void postHotplugEvent(bool connected);
54 void handleHotplugEvent(bool connected);
DisplayAnalyzer.cpp 63 void DisplayAnalyzer::postHotplugEvent(bool connected)
68 e.bValue = connected;
106 void DisplayAnalyzer::handleHotplugEvent(bool connected)
108 if (connected) {
  /hardware/interfaces/broadcastradio/2.0/
ITunerCallback.hal 60 * Method called by the HAL when the antenna gets connected or disconnected.
62 * For a new tuner session, client must assume the antenna is connected.
66 * @param connected True if the antenna is now connected, false otherwise.
68 oneway onAntennaStateChange(bool connected);
  /hardware/qcom/gps/msm8909w_3100/android/
AGnssRil.cpp 49 Return<bool> AGnssRil::updateNetworkState(bool connected, NetworkType type, bool /*roaming*/) {
54 mGnss->getGnssInterface()->updateConnectionStatus(connected, (uint8_t)type);
  /system/bt/service/common/android/bluetooth/
IBluetoothLowEnergyCallback.aidl 24 void OnConnectionState(int status, int client_id, String address, boolean connected);
  /frameworks/base/core/java/android/os/storage/
StorageEventListener.java 27 * @param connected true if the USB mass storage is connected.
29 public void onUsbMassStorageConnectionChanged(boolean connected) {
  /hardware/qcom/display/msm8084/libqservice/
IQHDMIClient.cpp 49 void onHdmiHotplug(int connected)
53 data.writeInt32(connected);
78 int connected = data.readInt32(); local
79 onHdmiHotplug(connected);
IQHDMIClient.h 42 virtual void onHdmiHotplug(int connected) = 0;
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_uevents.cpp 72 int connected = -1; // initial value - will be set to 1/0 based on hotplug local
95 connected = atoi(str + strlen("SWITCH_STATE="));
108 switch(connected) {
126 ALOGD("%s sending hotplug: connected = %d and dpy:%d",
127 __FUNCTION__, connected, dpy);
128 ctx->dpyAttr[dpy].connected = false;
131 ctx->proc->hotplug(ctx->proc, dpy, connected);
145 ALOGD("%s sending hotplug: connected = %d", __FUNCTION__,
146 connected);
147 ctx->dpyAttr[dpy].connected = true
    [all...]
  /hardware/qcom/gps/msm8998/android/
AGnssRil.cpp 40 static bool sendConnectionEvent(const bool connected, const int8_t type);
50 Return<bool> AGnssRil::updateNetworkState(bool connected, NetworkType type, bool roaming) {
54 sendConnectionEvent(connected, (int8_t)type);
91 static inline bool sendConnectionEvent(const bool connected, const int8_t type) {
100 ss << " " << (connected ? "1" : "0");
  /libcore/ojluni/src/main/java/sun/net/
ProgressSource.java 36 public enum State { NEW, CONNECTED, UPDATE, DELETE };
53 private boolean connected = false; field in class:ProgressSource
81 public boolean connected() { method in class:ProgressSource
82 if (!connected) {
83 connected = true;
84 state = State.CONNECTED;
166 if (connected() == false)
167 state = State.CONNECTED;
  /external/apache-http/src/org/apache/http/conn/routing/
RouteTracker.java 70 private boolean connected; field in class:RouteTracker
123 if (this.connected) {
124 throw new IllegalStateException("Already connected.");
126 this.connected = true;
134 * @param proxy the proxy connected to
142 if (this.connected) {
143 throw new IllegalStateException("Already connected.");
145 this.connected = true;
158 if (!this.connected) {
159 throw new IllegalStateException("No tunnel unless connected.")
    [all...]
  /hardware/interfaces/graphics/composer/2.1/
IComposerCallback.hal 23 /** The display has been connected */
24 CONNECTED = 1,
30 * Notifies the client that the given display has either been connected or
35 * Displays which have been connected are assumed to be in PowerMode::OFF,
44 * @param connected indicates whether the display is connected or
48 onHotplug(Display display, Connection connected);
  /hardware/libhardware/modules/sensors/dynamic_sensor/
BaseDynamicSensorDaemon.cpp 24 bool BaseDynamicSensorDaemon::onConnectionChange(const std::string &deviceKey, bool connected) {
27 if (connected) {
29 ALOGV("device %s is connected", deviceKey.c_str());
47 ALOGD("device %s already added and is connected again, ignore", deviceKey.c_str());
  /system/bt/service/doc/
IBluetoothLowEnergyCallback.txt 34 in bool connected);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
RouteDatabase.java 37 public synchronized void connected(Route route) { method in class:RouteDatabase
  /frameworks/base/libs/storage/include/storage/
IMountServiceListener.h 29 virtual void onUsbMassStorageConnectionChanged(const bool connected) = 0;
  /hardware/qcom/display/msm8909/libqservice/
IQHDMIClient.cpp 49 void onHdmiHotplug(int connected)
53 data.writeInt32(connected);
79 int connected = data.readInt32(); local
80 onHdmiHotplug(connected);

Completed in 2108 milliseconds

1 2 3 4 5 6 7 8 91011>>