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

1 2 3 4 5

  /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::__anon31656
  /external/libnfc-nci/src/nfa/dm/
nfa_dm_main.c 227 UINT8 type, len, *p_value, *p_stored, max_len; local
254 max_len = NCI_PARAM_LEN_TOTAL_DURATION;
262 max_len = NCI_PARAM_LEN_LA_BIT_FRAME_SDD;
267 max_len = NCI_PARAM_LEN_LA_PLATFORM_CONFIG;
272 max_len = NCI_PARAM_LEN_LA_SEL_INFO;
277 max_len = NCI_NFCID1_MAX_LEN;
282 max_len = NCI_MAX_HIS_BYTES_LEN;
291 max_len = NCI_PARAM_LEN_LB_SENSB_INFO;
296 max_len = NCI_PARAM_LEN_LB_NFCID0;
301 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/chromium_org/chrome/common/
multi_process_lock_linux.cc 32 const size_t max_len = sizeof(address.sun_path) - 2; variable
39 if (name_.length() > max_len) {
41 << " > " << max_len << ") - " << name_;
47 max_len + 1,
51 print_length > static_cast<int>(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/chromium_org/net/spdy/
spdy_test_utils.cc 62 const int max_len = std::max(actual_len, expected_len); local
63 scoped_ptr<bool[]> marks(new bool[max_len]);
73 for (int i = min_len; i < max_len; ++i) {
81 << HexDumpWithMarks(expected, expected_len, marks.get(), max_len)
83 << HexDumpWithMarks(actual, actual_len, marks.get(), max_len);
  /external/chromium_org/third_party/openssl/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;
  /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 ||
  /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 1226 memcpy (p_data, (UINT8 *)(p_buf + 1) + p_buf->offset, max_len); local
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
code.py 96 max_len = self._comment_length - self._indent_level - len(comment_prefix)
97 while len(comment) >= max_len:
98 line = comment[0:max_len]
104 comment = comment[max_len:]
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast_pac.h 44 size_t max_len);
  /external/chromium_org/gpu/command_buffer/service/
program_manager.cc 199 GLint max_len = 0; local
200 glGetProgramiv(service_id_, GL_INFO_LOG_LENGTH, &max_len);
201 if (max_len == 0) {
205 scoped_ptr<char[]> temp(new char[max_len]);
207 glGetProgramInfoLog(service_id_, max_len, &len, temp.get());
208 DCHECK(max_len == 0 || len < max_len);
316 GLint max_len = 0; local
319 glGetProgramiv(service_id_, GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &max_len);
321 scoped_ptr<char[]> name_buffer(new char[max_len]);
484 GLint max_len = 0; local
505 GLint max_len = 0; local
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
ShaderLang.cpp 333 size_t max_len = 0; local
334 ShGetInfo(handle, SH_NAME_MAX_LENGTH, &max_len);
335 if (len > max_len) {
337 len = max_len;
344 max_len = 0;
345 ShGetInfo(handle, SH_HASHED_NAME_MAX_LENGTH, &max_len);
346 if (len > max_len) {
348 len = max_len;
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
srtpfilter.cc 203 bool SrtpFilter::ProtectRtp(void* p, int in_len, int max_len, int* out_len) {
208 return send_session_->ProtectRtp(p, in_len, max_len, out_len);
211 bool SrtpFilter::ProtectRtcp(void* p, int in_len, int max_len, int* out_len) {
217 return send_rtcp_session_->ProtectRtcp(p, in_len, max_len, out_len);
219 return send_session_->ProtectRtcp(p, in_len, max_len, out_len);
468 bool SrtpSession::ProtectRtp(void* p, int in_len, int max_len, int* out_len) {
475 if (max_len < need_len) {
477 << max_len << " is less than the needed " << need_len;
499 bool SrtpSession::ProtectRtcp(void* p, int in_len, int max_len, int* out_len) {
506 if (max_len < need_len)
    [all...]
  /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);

Completed in 532 milliseconds

1 2 3 4 5