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

/system/core/libstats/
H A Dstatsd_writer.h36 int (*available)(); /* Does not cause resources to be taken */ member in struct:android_log_transport_write
/system/bt/osi/src/
H A Dringbuffer.cc27 size_t available; member in struct:ringbuffer_t
39 p->total = p->available = size;
51 return rb->available;
56 return rb->total - rb->available;
70 rb->available -= length;
82 rb->available += length;
114 rb->available += copied;
/system/chre/core/include/chre/core/
H A Daudio_request_manager.h91 * available.
94 * @param available true if requests for audio data will be processed and
97 void handleAudioAvailability(uint32_t handle, bool available);
168 //! Whether or not the source is available. It is unavailable by default.
169 bool available = false; member in struct:chre::AudioRequestManager::AudioRequestList
202 * no existing request is available, nullptr is returned.
237 void handleAudioAvailabilitySync(uint32_t handle, bool available);
252 * @param available true if audio is available for the supplied handle, false
255 void postAudioSamplingChangeEvents(uint32_t handle, bool available);
[all...]
/system/chre/platform/slpi/
H A Dplatform_audio.cc78 void handleWcdSpiAudioAvailability(uint32_t handle, bool available) { argument
79 LOGD("WCD SPI audio handle %" PRIu32 " available: %d", handle, available);
81 .handleAudioAvailability(handle, available);
/system/core/adb/
H A Dsocket_spec.cpp52 bool available; member in struct:LocalSocketType
174 if (!it.second.available) {
217 if (!it.second.available) {
/system/nfc/utils/
H A Dringbuffer.cc26 size_t available; member in struct:ringbuffer_t
39 p->total = p->available = size;
51 return rb->available;
56 return rb->total - rb->available;
70 rb->available -= length;
82 rb->available += length;
114 rb->available += copied;
/system/chre/core/
H A Daudio_request_manager.cc78 mAudioRequestLists[handle].available);
126 void AudioRequestManager::handleAudioAvailability(uint32_t handle, bool available) { argument
129 bool available; member in struct:chre::CallbackState
137 cbState->available = available;
142 .handleAudioAvailabilitySync(state->handle, state->available);
236 bool available) {
238 mAudioRequestLists[handle].available = available;
239 postAudioSamplingChangeEvents(handle, available);
235 handleAudioAvailabilitySync(uint32_t handle, bool available) argument
264 postAudioSamplingChangeEvents(uint32_t handle, bool available) argument
271 postAudioSamplingChangeEvent(uint32_t instanceId, uint32_t handle, bool available) argument
[all...]
/system/core/liblog/
H A Dlogger.h43 unsigned logMask; /* mask cache of available() success */
46 int (*available)(log_id_t logId); /* Does not cause resources to be taken */ member in struct:android_log_transport_write
63 int (*available)(log_id_t logId); member in struct:android_log_transport_read
/system/media/audio_utils/
H A Dfifo.cpp226 // separate from the low level code (indexes, available, masking).
355 ssize_t audio_utils_fifo_writer::available() function in class:audio_utils_fifo_writer
613 ssize_t audio_utils_fifo_reader::available() function in class:audio_utils_fifo_reader
615 return available(NULL /*lost*/);
618 ssize_t audio_utils_fifo_reader::available(size_t *lost) function in class:audio_utils_fifo_reader
/system/bt/stack/rfcomm/
H A Dport_api.cc1429 int available = 0; local
1430 // if(ioctl(fd, FIONREAD, &available) < 0)
1431 if (!p_port->p_data_co_callback(handle, (uint8_t*)&available,
1432 sizeof(available),
1436 "available:%d",
1437 available);
1440 if (available == 0) return PORT_SUCCESS;
1452 (((int)p_buf->len + available) <= (int)p_port->peer_mtu) &&
1453 (((int)p_buf->len + available) <= (int)length)) {
1455 // available,
[all...]

Completed in 227 milliseconds