HomeSort by relevance Sort by last modified time
    Searched refs:max_len (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/e2fsprogs/lib/e2p/
iod.c 32 int max_len = -1, len, ret = 0; local
35 max_len = pathconf(dir_name, _PC_NAME_MAX);
37 if (max_len == -1) {
39 max_len = _POSIX_NAME_MAX;
42 max_len = NAME_MAX;
44 max_len = 256;
48 max_len += sizeof(struct dirent);
50 de = malloc(max_len+1);
53 memset(de, 0, max_len+1);
63 if (len > max_len)
    [all...]
  /external/wpa_supplicant_8/src/utils/
uuid.h 15 int uuid_bin2str(const u8 *bin, char *str, size_t max_len);
uuid.c 49 int uuid_bin2str(const u8 *bin, char *str, size_t max_len)
52 len = os_snprintf(str, max_len, "%02x%02x%02x%02x-%02x%02x-%02x%02x-"
58 if (len < 0 || (size_t) len >= max_len)
ip_addr.h 19 u8 max_len[16]; member in union:hostapd_ip_addr::__anon17121
  /external/libnfc-nci/src/nfa/dm/
nfa_dm_main.c 222 UINT8 type, len, *p_value, *p_stored, max_len; local
249 max_len = NCI_PARAM_LEN_TOTAL_DURATION;
257 max_len = NCI_PARAM_LEN_LA_BIT_FRAME_SDD;
262 max_len = NCI_PARAM_LEN_LA_PLATFORM_CONFIG;
267 max_len = NCI_PARAM_LEN_LA_SEL_INFO;
272 max_len = NCI_NFCID1_MAX_LEN;
277 max_len = NCI_MAX_HIS_BYTES_LEN;
286 max_len = NCI_PARAM_LEN_LB_SENSB_INFO;
291 max_len = NCI_PARAM_LEN_LB_NFCID0;
296 max_len = NCI_PARAM_LEN_LB_APPDATA
    [all...]
  /external/linux-tools-perf/util/ui/
util.c 35 int i, rc = -1, max_len = 5; local
49 if (len > max_len)
50 max_len = len;
55 newtCenteredWindow(max_len, argc, NULL);
71 int max_len = 0, nr_lines = 0; local
85 if (max_len < len)
86 max_len = len;
93 tb = newtTextbox(0, 0, max_len, nr_lines, 0);
99 newtCenteredWindow(max_len, nr_lines, NULL);
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
uuid.h 21 int uuid_bin2str(const u8 *bin, char *str, size_t max_len);
uuid.c 57 int uuid_bin2str(const u8 *bin, char *str, size_t max_len)
60 len = os_snprintf(str, max_len, "%02x%02x%02x%02x-%02x%02x-%02x%02x-"
66 if (len < 0 || (size_t) len >= max_len)
  /packages/inputmethods/PinyinIME/jni/include/
utf16reader.h 43 char16* readline(char16* read_buf, size_t max_len);
pinyinime.h 135 * @param max_len The maximum length of the buffer.
139 size_t max_len);
  /external/chromium/third_party/libjingle/source/talk/session/phone/
srtpfilter.h 72 bool ProtectRtp(void* data, int in_len, int max_len, int* out_len);
73 bool ProtectRtcp(void* data, int in_len, int max_len, int* out_len);
120 bool ProtectRtp(void* data, int in_len, int max_len, int* out_len);
121 bool ProtectRtcp(void* data, int in_len, int max_len, int* out_len);
srtpfilter.cc 123 bool SrtpFilter::ProtectRtp(void* p, int in_len, int max_len, int* out_len) {
128 return send_session_.ProtectRtp(p, in_len, max_len, out_len);
131 bool SrtpFilter::ProtectRtcp(void* p, int in_len, int max_len, int* out_len) {
136 return send_session_.ProtectRtcp(p, in_len, max_len, out_len);
271 bool SrtpSession::ProtectRtp(void* p, int in_len, int max_len, int* out_len) {
278 if (max_len < need_len) {
280 << max_len << " is less than the needed " << need_len;
293 bool SrtpSession::ProtectRtcp(void* p, int in_len, int max_len, int* out_len) {
300 if (max_len < need_len) {
302 << max_len << " is less than the needed " << need_len
    [all...]
  /external/qemu/android/
charmap.h 48 * max_len - charmap_name buffer size.
52 int max_len);
  /external/openssl/crypto/asn1/
evp_asn1.c 74 /* int max_len: for returned value */
76 int max_len)
88 if (ret < max_len)
91 num=max_len;
137 /* int max_len: for returned value */
139 int max_len)
173 if (max_len > ret)
176 n=max_len;
  /packages/inputmethods/PinyinIME/jni/share/
utf16reader.cpp 72 char16* Utf16Reader::readline(char16* read_buf, size_t max_len) {
73 if (NULL == fp_ || NULL == read_buf || 0 == max_len)
92 if (i == max_len - 1 ||
pinyinime.cpp 117 size_t max_len) {
121 return matrix_search->get_candidate(cand_id, cand_str, max_len);
  /external/speex/include/speex/
speex_bits.h 94 * @param max_len Maximum number of bytes to write (i.e. size of the "bytes" buffer)
97 int speex_bits_write(SpeexBits *bits, char *bytes, int max_len);
100 int speex_bits_write_whole_bytes(SpeexBits *bits, char *bytes, int max_len);
  /system/core/libsparse/
backed_block.c 362 unsigned int max_len)
366 max_len = ALIGN_DOWN(max_len, bbl->block_size);
368 if (bb->len <= max_len) {
379 new_bb->len = bb->len - max_len;
380 new_bb->block = bb->block + max_len / bbl->block_size;
383 bb->len = max_len;
387 new_bb->data.data = (char *)bb->data.data + max_len;
390 new_bb->file.offset += max_len;
393 new_bb->fd.offset += max_len;
    [all...]
  /external/bluetooth/bluedroid/stack/rfcomm/
port_api.c 1122 memcpy (p_data, (UINT8 *)(p_buf + 1) + p_buf->offset, max_len); local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_fast_pac.h 50 size_t max_len);
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast_pac.h 44 size_t max_len);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc 29 uptr *buff_size, uptr max_len) {
35 for (uptr size = kMinFileLen; size <= max_len; size *= 2) {
  /external/qemu/
os-posix.c 101 size_t max_len; local
136 max_len = strlen(dir) +
138 res = qemu_mallocz(max_len);
139 snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
141 snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
  /external/libvpx/vp8/common/
duck_io.h 106 int duck_name(int handle, char name[], size_t max_len); /* EMH 9-23-03 */
  /external/srec/srec/Vocabulary/include/
SR_Vocabulary.h 161 SREC_VOCABULARY_API ESR_ReturnCode SR_Vocabulary_etiinf_conv_multichar(ESR_Locale locale, const LCHAR* input, LCHAR* output, size_t max_len);

Completed in 404 milliseconds

1 2 3 4