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

1 2 3

  /external/e2fsprogs/lib/e2p/
iod.c 30 int max_len = -1, len, ret = 0; local
33 max_len = pathconf(dir_name, _PC_NAME_MAX);
35 if (max_len == -1) {
37 max_len = _POSIX_NAME_MAX;
40 max_len = NAME_MAX;
42 max_len = 256;
46 max_len += sizeof(struct dirent);
48 de = malloc(max_len+1);
51 memset(de, 0, max_len+1);
61 if (len > max_len)
    [all...]
  /external/bluetooth/glib/glib/
gunicodeprivate.h 30 gssize max_len,
gutf8.c 706 gssize max_len)
749 if (max_len >= 0 && len > max_len)
751 for (i = 1; i < max_len; i++)
784 * @max_len: the maximum number of bytes to read, or -1, for no maximum or
794 * character (or if @max_len is zero), returns (gunichar)-2;
800 gssize max_len)
804 if (max_len == 0)
807 result = g_utf8_get_char_extended (p, max_len);
    [all...]
gunidecomp.c 350 gssize max_len,
364 while ((max_len < 0 || p < str + max_len) && *p)
393 while ((max_len < 0 || p < str + max_len) && *p)
  /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::__anon15738
  /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);
  /external/bluetooth/glib/tests/
utf8-validate.c 34 gint max_len; member in struct:__anon2596
38 /* some tests to check max_len handling */
280 gint max_len,
287 result = g_utf8_validate (text, max_len, &end);
302 str->str, max_len,
315 do_test (i, test[i].text, test[i].max_len,
  /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/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 4618 milliseconds

1 2 3