HomeSort by relevance Sort by last modified time
    Searched refs:buf_size (Results 76 - 100 of 276) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/net/url_request/
url_request_file_job.h 40 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int* bytes_read);
url_request_ftp_job.h 61 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
url_request_test_job.h 95 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
  /external/libnfc-nci/src/udrv/include/
uamp_api.h 156 ** buf_size: size of p_buf
162 BT_API UINT16 UAMP_Read(tUAMP_ID amp_id, UINT8 *p_buf, UINT16 buf_size, tUAMP_CH channel);
  /frameworks/rs/driver/linkloader/android/
librsloader.cpp 40 size_t buf_size,
43 RSExecRef object = rsloaderLoadExecutable(buf, buf_size);
57 size_t buf_size) {
58 ArchiveReaderLE AR(buf, buf_size);
  /external/oprofile/module/
oprofile.h 46 uint buf_size; member in struct:_oprof_data
72 int buf_size; member in struct:oprof_sysctl
  /system/media/audio_utils/
echo_reference.c 48 size_t buf_size; // main buffer size in frames member in struct:echo_reference
115 er->buf_size = 0;
263 if (er->frames_in + inFrames > er->buf_size) {
265 er->buf_size, er->frames_in + inFrames);
266 er->buf_size = er->frames_in + inFrames;
267 er->buffer = realloc(er->buffer, er->buf_size * er->rd_frame_size);
276 inFrames, er->frames_in, er->buf_size,
403 if (er->frames_in > er->buf_size) {
404 er->buf_size = er->frames_in;
405 er->buffer = realloc(er->buffer, er->buf_size * er->rd_frame_size)
    [all...]
  /device/lge/mako/camera/mm-camera-interface/
mm_jpeg_encoder.c 127 uint32_t buf_size; local
137 jpeg_buffer_get_actual_size(thumbnail_buffer, &buf_size);
142 jpeg_buffer_get_actual_size(snapshot_buffer, &buf_size);
166 uint32_t buf_size; local
174 jpeg_buffer_get_actual_size(buffer, &buf_size);
179 mmcamera_jpegfragment_callback(buf_ptr, buf_size, user_data);
192 uint32_t buf_size; local
200 jpeg_buffer_get_actual_size(buffer, &buf_size);
205 mmcamera_jpegfragment_callback(buf_ptr, buf_size, user_data);
317 int buf_size = 0 local
    [all...]
  /external/wpa_supplicant_8/src/utils/
common.c 187 static inline int _wpa_snprintf_hex(char *buf, size_t buf_size, const u8 *data,
191 char *pos = buf, *end = buf + buf_size;
193 if (buf_size == 0)
211 * @buf_size: Maximum buffer size in bytes (should be at least 2 * len + 1)
216 int wpa_snprintf_hex(char *buf, size_t buf_size, const u8 *data, size_t len)
218 return _wpa_snprintf_hex(buf, buf_size, data, len, 0);
225 * @buf_size: Maximum buffer size in bytes (should be at least 2 * len + 1)
230 int wpa_snprintf_hex_uppercase(char *buf, size_t buf_size, const u8 *data,
233 return _wpa_snprintf_hex(buf, buf_size, data, len, 1);
  /external/libpcap/
fad-glifc.c 91 unsigned buf_size; local
138 buf_size = ifn.lifn_count * sizeof (struct lifreq);
139 buf = malloc(buf_size);
151 ifc.lifc_len = buf_size;
155 memset(buf, 0, buf_size);
  /external/chromium/chrome/browser/net/
url_request_slow_download_job.cc 81 bool URLRequestSlowDownloadJob::ReadRawData(net::IOBuffer* buf, int buf_size,
90 DCHECK(buf_size > kSecondDownloadSize);
100 int send_size = std::min(first_download_size_remaining_, buf_size);
  /external/qemu/block/
cloop.c 40 static int cloop_probe(const uint8_t *buf, int buf_size, const char *filename)
46 if(length>buf_size)
47 length=buf_size;
parallels.c 56 static int parallels_probe(const uint8_t *buf, int buf_size, const char *filename)
60 if (buf_size < HEADER_SIZE)
  /development/host/windows/usb/adb_winapi_test/
adb_winapi_test.cpp 108 unsigned long buf_size = sizeof(buf);
113 while (AdbNextInterface(enum_handle, &interface_info, &buf_size)) {
123 buf_size = sizeof(buf);;
146 unsigned long buf_size = sizeof(buf);
149 while (AdbNextInterface(enum_handle, &interface_info, &buf_size)) {
151 buf_size = sizeof(buf);
107 unsigned long buf_size = sizeof(buf); local
145 unsigned long buf_size = sizeof(buf); local
  /external/qemu/
cutils.c 28 void pstrcpy(char *buf, int buf_size, const char *str)
33 if (buf_size <= 0)
38 if (c == 0 || q >= buf + buf_size - 1)
46 char *pstrcat(char *buf, int buf_size, const char *s)
50 if (len < buf_size)
51 pstrcpy(buf + len, buf_size - len, s);
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.c 141 * @buf_size: Maximum buf size
151 size_t buf_size, const u8 *payload, size_t payload_len,
160 if (pos + TLS_RECORD_HEADER_LEN > buf + buf_size)
179 if (pos + rl->iv_size > buf + buf_size)
196 if (pos + payload_len > buf + buf_size)
218 clen = buf + buf_size - pos;
240 if (pos + pad + 1 > buf + buf_size) {
  /hardware/qcom/media/mm-video/vidc/common/src/
vidc_color_converter.cpp 140 bool omx_c2d_conv::get_buffer_size(int port,unsigned int &buf_size)
150 buf_size = bufferreq.size;
  /external/bluetooth/bluedroid/btif/co/
bta_hl_co.c 314 ** buf_size - the size of the buffer
323 UINT16 buf_size, UINT8 *p_buf, UINT16 evt)
329 BTIF_TRACE_DEBUG4("%s app_id=%d mdl_handle=0x%x buf_size=%d",
330 __FUNCTION__, app_id, mdl_handle, buf_size);
336 if (p_dcb->tx_size <= buf_size )
418 ** buf_size - the size of the buffer
427 UINT16 buf_size, UINT8 *p_buf, UINT16 evt)
  /external/bluetooth/bluedroid/gki/common/
gki_debug.c 211 UINT16 buf_size; local
226 buf_size = gki_cb.com.freeq[pool_id].size + BUFFER_PADDING_SIZE;
229 for (i = 0; i < num_bufs; i++, p_start += buf_size)
232 magic = (UINT32 *)((UINT8 *)p_hdr + buf_size - sizeof(UINT32));
  /external/chromium/chrome/browser/renderer_host/
download_resource_handler.cc 132 int* buf_size, int min_size) {
133 DCHECK(buf && buf_size);
135 *buf_size = min_size < 0 ? kReadBufSize : min_size;
136 read_buffer_ = new net::IOBuffer(*buf_size);
download_resource_handler.h 52 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
download_throttling_resource_handler.h 50 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
offline_resource_handler.h 40 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
save_file_resource_handler.h 40 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size,
  /external/kernel-headers/original/linux/
random.h 37 int buf_size; member in struct:rand_pool_info

Completed in 2064 milliseconds

1 2 34 5 6 7 8 91011>>