Searched defs:available (Results 76 - 100 of 186) sorted by relevance

12345678

/external/openssh/
H A Droaming_common.c199 size_t available, needed; local
202 available = out_last - out_start;
204 available = out_buf_size;
208 if (needed > available)
/external/openssl/crypto/bio/
H A Dbss_bio.c60 * for which no specific BIO method is available.
272 /* non-copying interface: provide pointer to available data in buffer
273 * bio_nread0: return number of available bytes
303 /* avoid code duplication -- nothing available for reading */
321 ossl_ssize_t num, available; local
328 available = bio_nread0(bio, buf);
329 if (num > available)
330 num = available;
426 * bio_nwrite0: check how much space is available
584 * available
[all...]
/external/qemu/block/
H A Draw-win32.c180 ULARGE_INTEGER available, total, total_free; local
192 if (!GetDiskFreeSpaceEx(s->drive_path, &available, &total, &total_free))
/external/qemu/distrib/sdl-1.2.15/src/audio/alsa/
H A DSDL_alsa_audio.c193 int available; local
197 available = 0;
199 return available;
203 available = 1;
207 return(available);
585 SDL_SetError("Couldn't set minimum available samples: %s", SDL_NAME(snd_strerror)(status));
/external/qemu/distrib/sdl-1.2.15/src/audio/nto/
H A DSDL_nto_audio.c141 int available; local
145 available = 0;
152 available = 1;
157 available = 0;
162 SDL_SetError("NTO_AudioAvailable(): there are no available audio devices.\n");
165 return (available);
/external/qemu/distrib/sdl-1.2.15/src/audio/pulse/
H A DSDL_pulseaudio.c224 int available; local
226 available = 0;
228 return available;
247 available = 1;
252 return(available);
/external/skia/include/core/
H A DSkReader32.h42 uint32_t available() const { return SkToU32(fStop - fCurr); } function in class:SkReader32
H A DSkWriter32.h66 if (NULL == block || block->available() < size) {
214 size_t available() const { return fSizeOfBlock - fAllocatedSoFar; } function in struct:SkWriter32::Block
220 SkASSERT(this->available() >= size);
/external/skia/src/core/
H A DSkData.cpp36 size_t available = fSize; local
37 if (offset >= available || 0 == length) {
40 available -= offset;
41 if (length > available) {
42 length = available;
133 size_t available = src->size(); local
134 if (offset >= available || 0 == length) {
137 available -= offset;
138 if (length > available) {
139 length = available;
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DServerSocketTest.java429 fail("No exception binding to address that is not available");
512 fail("No exception binding to address that is not available");
925 protected int available() throws IOException { method in class:ServerSocketTest.MockSocketImpl
/external/bluetooth/bluedroid/stack/rfcomm/
H A Dport_api.c1511 int available = 0; local
1512 //if(ioctl(fd, FIONREAD, &available) < 0)
1513 if(p_port->p_data_co_callback(handle, (UINT8*)&available, sizeof(available),
1516 RFCOMM_TRACE_ERROR1("p_data_co_callback DATA_CO_CALLBACK_TYPE_INCOMING_SIZE failed, available:%d", available);
1519 if(available == 0)
1530 && (((int)p_buf->len + available) <= (int)p_port->peer_mtu)
1531 && (((int)p_buf->len + available) <= (int)length))
1533 //if(recv(fd, (UINT8 *)(p_buf + 1) + p_buf->offset + p_buf->len, available,
[all...]
/external/chromium/net/http/
H A Dhttp_stream_parser.cc247 // request body isn't available yet (can't coalesce).
462 int available = read_buf_->offset() - read_buf_unused_offset_; local
463 if (available) {
464 CHECK_GT(available, 0);
465 int bytes_from_buffer = std::min(available, user_read_buf_len_);
470 if (bytes_from_buffer == available) {
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DAwContentsClientShouldInterceptRequestTest.java215 public int available() { method in class:AwContentsClientShouldInterceptRequestTest.EmptyInputStream
/external/chromium_org/content/renderer/media/
H A Dwebrtc_audio_device_impl.cc220 int32_t WebRtcAudioDeviceImpl::PlayoutIsAvailable(bool* available) { argument
221 *available = initialized_;
229 int32_t WebRtcAudioDeviceImpl::RecordingIsAvailable(bool* available) { argument
230 *available = (!capturers_.empty());
398 int32_t WebRtcAudioDeviceImpl::StereoPlayoutIsAvailable(bool* available) const {
400 *available = (output_channels() == 2);
405 bool* available) const {
413 *available = (capturer->audio_parameters().channels() == 2);
H A Dwebrtc_audio_device_not_impl.cc104 int32_t WebRtcAudioDeviceNotImpl::SpeakerIsAvailable(bool* available) { argument
116 int32_t WebRtcAudioDeviceNotImpl::MicrophoneIsAvailable(bool* available) { argument
128 int32_t WebRtcAudioDeviceNotImpl::SpeakerVolumeIsAvailable(bool* available) { argument
153 int32_t WebRtcAudioDeviceNotImpl::MicrophoneVolumeIsAvailable(bool* available) { argument
162 int32_t WebRtcAudioDeviceNotImpl::SpeakerMuteIsAvailable(bool* available) { argument
174 int32_t WebRtcAudioDeviceNotImpl::MicrophoneMuteIsAvailable(bool* available) { argument
186 int32_t WebRtcAudioDeviceNotImpl::MicrophoneBoostIsAvailable(bool* available) { argument
/external/chromium_org/net/spdy/
H A Dbuffered_spdy_framer.cc163 const size_t available = kHeaderBufferSize - header_buffer_used_; local
164 if (len > available) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAutoTableLayout.cpp479 int available = tableLogicalWidth; local
506 available -= cellLogicalWidth;
533 if (available > 0 && havePercent) {
538 available += m_layoutStruct[i].computedLogicalWidth - cellLogicalWidth;
553 available += cellLogicalWidth - newLogicalWidth;
561 if (available > 0) {
565 available += m_layoutStruct[i].computedLogicalWidth - logicalWidth.value();
572 if (available > 0 && numAuto) {
573 available += allocAuto; // this gets redistributed
577 int cellLogicalWidth = max<int>(m_layoutStruct[i].computedLogicalWidth, static_cast<int>(available * static_cas
[all...]
/external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
H A Dmemenv.cc56 const uint64_t available = size_ - offset; local
57 if (n > available) {
58 n = available;
170 const size_t available = file_->Size() - pos_; local
171 if (n > available) {
172 n = available;
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpresencestatus.h60 bool available() const { return available_ ; } function in class:buzz::PresenceStatus
124 if (!available()) {
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
H A DByteStringTest.java291 // available().
348 // Same as above, but also implements available().
354 @Override public int available() { method in class:ByteStringTest.AvailableStream
/external/chromium/chrome/browser/extensions/
H A Dextension_webstore_private_api.cc565 TokenService::TokenAvailableDetails* available = local
567 service = available->service();
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpbase.cc118 size_t available = len - *processed; local
119 if (available <= 0) {
122 if ((data_size_ != SIZE_UNKNOWN) && (available > data_size_)) {
123 available = data_size_;
126 ProcessResult result = ProcessData(buffer + *processed, available, read,
523 // The most frequent use of this function is response to new data available
541 // We're can't make progress until more data is available.
563 // protocol element (such as http header, or chunk size) is available,
687 // No data currently available to send.
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dstatus.h73 bool available() const { return available_ ; } function in class:buzz::Status
153 if (!available()) {
/external/chromium_org/gpu/command_buffer/service/
H A Dquery_manager.cc178 GLuint available = 0; local
180 service_id_, GL_QUERY_RESULT_AVAILABLE_EXT, &available);
181 if (!available) {
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_backend_impl.cc410 int64 available = base::SysInfo::AmountOfFreeDiskSpace(path); local
411 if (available < 0)
416 result.max_size = disk_cache::PreferedCacheSize(available);

Completed in 709 milliseconds

12345678