Searched defs:available (Results 1 - 11 of 11) sorted by relevance

/system/connectivity/apmanager/dbus/
H A Dfirewalld_dbus_proxy.cc43 // One time callback when service becomes available.
54 LOG(ERROR) << "firewalld service not available";
78 LOG(ERROR) << "firewalld service not available";
99 void FirewalldDBusProxy::OnServiceAvailable(bool available) { argument
100 LOG(INFO) << __func__ << ": " << available; local
103 if (available && !service_appeared_callback_.is_null()) {
105 } else if (!available && !service_vanished_callback_.is_null()) {
108 service_available_ = available;
H A Dpermission_broker_dbus_proxy.cc43 // One time callback when service becomes available.
65 LOG(ERROR) << "permission_broker service not available";
93 LOG(ERROR) << "permission_broker service not available";
114 void PermissionBrokerDBusProxy::OnServiceAvailable(bool available) { argument
115 LOG(INFO) << __func__ << ": " << available; local
118 if (available && !service_appeared_callback_.is_null()) {
120 } else if (!available && !service_vanished_callback_.is_null()) {
123 service_available_ = available;
H A Dshill_dbus_proxy.cc49 // One time callback when service becomes available.
59 LOG(ERROR) << "ClaimInterface failed: service not available";
73 LOG(ERROR) << "ReleaseInterface failed: service not available";
88 LOG(ERROR) << "SetupApModeInterface failed: service not available";
102 LOG(ERROR) << "SetupStationModeInterface failed: service not available";
115 void ShillDBusProxy::OnServiceAvailable(bool available) { argument
116 LOG(INFO) << __func__ << ": " << available; local
117 // Nothing to be done if proxy service not available.
120 if (available && !service_appeared_callback_.is_null()) {
122 } else if (!available
[all...]
/system/bt/osi/src/
H A Dringbuffer.c27 size_t available; member in struct:ringbuffer_t
38 p->total = p->available = size;
51 return rb->available;
56 return rb->total - rb->available;
72 rb->available -= length;
86 rb->available += length;
117 rb->available += copied;
/system/connectivity/shill/dbus/
H A Dchromeos_dbus_objectmanager_proxy.cc66 // One time callback when service becomes available.
80 "Service not available");
92 void ChromeosDBusObjectManagerProxy::OnServiceAvailable(bool available) { argument
93 LOG(INFO) << __func__ << ": " << available; local
97 if (available && !service_appeared_callback_.is_null()) {
99 } else if (!available && !service_vanished_callback_.is_null()) {
102 service_available_ = available;
H A Dchromeos_modem_manager_proxy.cc67 // One time callback when service becomes available.
78 LOG(ERROR) << "Service not available";
104 void ChromeosModemManagerProxy::OnServiceAvailable(bool available) { argument
105 LOG(INFO) << __func__ << ": " << available; local
109 if (available && !service_appeared_callback_.is_null()) {
111 } else if (!available && !service_vanished_callback_.is_null()) {
114 service_available_ = available;
H A Dchromeos_wimax_manager_proxy.cc92 // One time callback when service becomes available.
123 void ChromeosWiMaxManagerProxy::OnServiceAvailable(bool available) { argument
124 SLOG(DBus, nullptr, 2) << __func__ << ": " << available; local
128 if (available && !service_appeared_callback_.is_null()) {
130 } else if (!available && !service_vanished_callback_.is_null()) {
133 service_available_ = available;
H A Dchromeos_power_manager_proxy.cc86 // One time callback when service becomes available.
99 LOG(ERROR) << "PowerManager service not available";
110 LOG(ERROR) << "PowerManager service not available";
119 LOG(ERROR) << "PowerManager service not available";
130 LOG(ERROR) << "PowerManager service not available";
141 LOG(ERROR) << "PowerManager service not available";
150 LOG(ERROR) << "PowerManager service not available";
161 LOG(ERROR) << "PowerManager service not available";
305 void ChromeosPowerManagerProxy::OnServiceAvailable(bool available) { argument
306 // The only time this function will ever be invoked with |available| se
[all...]
H A Dchromeos_supplicant_process_proxy.cc109 // One time callback when service becomes available.
231 void ChromeosSupplicantProcessProxy::OnServiceAvailable(bool available) { argument
232 SLOG(&supplicant_proxy_->GetObjectPath(), 2) << __func__ << ": " << available; local
236 if (available && !service_appeared_callback_.is_null()) {
238 } else if (!available && !service_vanished_callback_.is_null()) {
241 service_available_ = available;
/system/core/liblog/
H A Dlogger.h43 unsigned logMask; /* cache of available success */
46 int (*available)(log_id_t logId); member in struct:android_log_transport_write
60 int (*available)(log_id_t logId); member in struct:android_log_transport_read
/system/bt/stack/rfcomm/
H A Dport_api.c1536 int available = 0; local
1537 //if(ioctl(fd, FIONREAD, &available) < 0)
1538 if(p_port->p_data_co_callback(handle, (UINT8*)&available, sizeof(available),
1541 RFCOMM_TRACE_ERROR("p_data_co_callback DATA_CO_CALLBACK_TYPE_INCOMING_SIZE failed, available:%d", available);
1544 if(available == 0)
1555 && (((int)p_buf->len + available) <= (int)p_port->peer_mtu)
1556 && (((int)p_buf->len + available) <= (int)length))
1558 //if(recv(fd, (UINT8 *)(p_buf + 1) + p_buf->offset + p_buf->len, available,
[all...]

Completed in 146 milliseconds