HomeSort by relevance Sort by last modified time
    Searched full:buf_len (Results 101 - 125 of 301) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/selinux/libsemanage/src/
parse_utils.c 86 size_t buf_len = 0; local
103 ((len = getline(&buffer, &buf_len, info->file_stream)) > 0)) {
  /external/selinux/policycoreutils/restorecond/
user.c 107 #define BUF_LEN (1024 * (EVENT_SIZE + 16))
116 char buffer[BUF_LEN+1];
  /external/zlib/src/test/
minigzip.c 403 off_t buf_len; /* length of the input file */ local
408 buf_len = sb.st_size;
409 if (buf_len <= 0) return Z_ERRNO;
412 buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0);
416 len = gzwrite(out, (char *)buf, (unsigned)buf_len);
418 if (len != (int)buf_len) error(gzerror(out, &err));
420 munmap(buf, buf_len);
  /external/boringssl/src/crypto/ecdsa/
ecdsa_test.cc 117 size_t buf_len = 2 * bn_len; local
118 std::vector<uint8_t> raw_buf(buf_len);
126 size_t offset = raw_buf[10] % buf_len;
  /external/libunwind/doc/
unw_create_addr_space.man 162 buf_len,
394 size of this buffer is specified in argument buf_len\&.
397 procedure\&'s name is longer than buf_len
399 truncated to buf_len\-1
  /external/libunwind/tests/
test-proc-info.c 118 size_t buf_len UNUSED,
  /external/selinux/libselinux/src/
label_internal.h 66 size_t buf_len,
  /external/wpa_supplicant_8/src/eap_common/
ikev2_common.c 377 size_t sign_len, buf_len; local
388 buf_len = 4 + ID_len;
389 buf = os_zalloc(buf_len);
395 1, (const u8 **) &buf, &buf_len, hash) < 0) {
  /system/bt/bta/av/
bta_av_api.c 449 UINT8 buf_len)
453 buf_len);
460 p_buf->msg.pass_len = buf_len;
465 memcpy(p_buf->msg.p_pass_data, p_msg, buf_len);
  /external/boringssl/src/ssl/
ssl_cipher.c 902 * |buf_len| bytes at |buf|. */
903 static int rule_equals(const char *rule, const char *buf, size_t buf_len) {
905 return strncmp(rule, buf, buf_len) == 0 && rule[buf_len] == '\0';
1170 size_t j, buf_len; local
    [all...]
  /device/moto/shamu/camera/QCamera/stack/mm-jpeg-interface/src/
mm_jpeg_interface.c 58 CDBG_ERROR("Buff_inof: sin_img fd=%d, buf_len=%d, buf_add=%p: src img img num=%d", buf_info->sink_img.fd, buf_info->sink_img.buf_len,
  /external/libunwind/src/x86/
Ginit.c 254 char *buf, size_t buf_len, unw_word_t *offp,
257 return _Uelf32_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
  /external/libunwind/src/x86_64/
Ginit.c 273 char *buf, size_t buf_len, unw_word_t *offp,
276 return _Uelf64_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
  /external/wpa_supplicant_8/src/rsn_supp/
tdls.c 126 int buf_len; /* length of TPK message for retransmission */ member in struct:wpa_tdls_peer::tpk_timer
286 peer->sm_tmr.buf_len = msg_len;
345 peer->sm_tmr.buf_len)) {
381 peer->sm_tmr.buf_len = 0;
1049 size_t buf_len; local
1127 buf_len = 0;
1129 buf_len += peer->rsnie_i_len + sizeof(struct wpa_tdls_ftie) +
1134 buf_len += 170;
1136 buf_len += sizeof(struct wpa_tdls_lnkid);
1138 rbuf = os_zalloc(buf_len + 1)
1231 size_t buf_len; local
1322 size_t buf_len; local
1418 size_t buf_len = 0; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
driver_i.h 507 u8 *buf, size_t buf_len)
511 return wpa_s->driver->get_noa(wpa_s->drv_priv, buf, buf_len);
556 char *cmd, char *buf, size_t buf_len)
560 return wpa_s->driver->driver_cmd(wpa_s->drv_priv, cmd, buf, buf_len);
632 u8 *buf, u16 *buf_len)
637 buf_len);
mesh_mpm.c 221 size_t buf_len; local
226 buf_len = 2 + /* capability info */
237 buf_len += 2 + 26 + /* HT capabilities */
243 buf_len += 2 + 12 + /* VHT Capabilities */
248 buf_len += conf->rsn_ie_len; /* RSN IE */
250 buf = wpabuf_alloc(buf_len);
  /external/valgrind/coregrind/
m_libcfile.c 1386 static SizeT buf_len = 0; local
1427 static SizeT buf_len = 0; local
    [all...]
  /external/google-breakpad/src/third_party/libdisasm/
libdis.h 531 * (buf, buf_len, buf_rva, offset, len, insn, func, arg, resolve_func)
560 * buf_len : Length of the buffer
565 unsigned int x86_disasm( unsigned char *buf, unsigned int buf_len,
590 * buf_len : Number of bytes in buffer
601 unsigned int x86_disasm_forward( unsigned char *buf, unsigned int buf_len,
    [all...]
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 245 unsigned char *buf, size_t *buf_len,
249 unsigned char *buf, size_t *buf_len);
258 static int scard_parse_fsp_templ(unsigned char *buf, size_t buf_len,
269 end = pos + buf_len;
790 unsigned char *buf, size_t *buf_len,
858 rlen = *buf_len;
861 *buf_len = resp[1] < rlen ? resp[1] : rlen;
871 unsigned char *buf, size_t *buf_len)
873 return _scard_select_file(scard, file_id, buf, buf_len,
    [all...]
  /system/bt/bta/hf_client/
bta_hf_client_at.c 120 static void bta_hf_client_queue_at(tBTA_HF_CLIENT_AT_CMD cmd, const char *buf, UINT16 buf_len)
128 new_cmd->buf_len = buf_len;
130 memcpy(new_cmd->buf, buf, buf_len);
169 static void bta_hf_client_send_at(tBTA_HF_CLIENT_AT_CMD cmd, char *buf, UINT16 buf_len)
178 APPL_TRACE_DEBUG("%s %.*s", __FUNCTION__, buf_len - 1, buf);
191 PORT_WriteData(bta_hf_client_cb.scb.conn_handle, buf, buf_len, &len);
198 bta_hf_client_queue_at(cmd, buf, buf_len);
211 bta_hf_client_send_at(cur->cmd, cur->buf, cur->buf_len);
    [all...]
  /external/compiler-rt/test/dfsan/
custom.cc 358 int buf_len = strlen(buf);
367 int res = write(fd, buf, buf_len);
378 dfsan_set_label(k_label, &buf_len, sizeof(buf_len));
380 res = write(fd, buf, buf_len);
  /external/webrtc/webrtc/base/
stream.h 137 // The buffer has a capacity of buf_len bytes. NULL is returned if there is
147 virtual void* GetWriteBuffer(size_t* buf_len);
272 virtual void* GetWriteBuffer(size_t* buf_len) {
273 return stream_->GetWriteBuffer(buf_len);
537 void* GetWriteBuffer(size_t* buf_len) override;
  /external/autotest/client/tests/kvm/tests/
virtio_console.py     [all...]
  /external/valgrind/coregrind/m_demangle/
demangle.c 160 static SizeT buf_len = 0; local
168 if (buf_len < len) {
171 buf_len = len;
  /external/webrtc/webrtc/p2p/stunprober/
stunprober.cc 57 void ProcessResponse(const char* buf, size_t buf_len);
171 size_t buf_len) {
173 rtc::ByteBuffer message(buf, buf_len);

Completed in 1270 milliseconds

1 2 3 45 6 7 8 91011>>