HomeSort by relevance Sort by last modified time
    Searched refs:file_len (Results 1 - 8 of 8) sorted by null

  /external/icu4c/test/perf/ubrkperf/
ubrkperf.h 23 ICUBreakFunction(const char *locale, const char *mode, const UChar *file, int32_t file_len) :
26 m_fileLen_(file_len),
59 ICUIsBound(const char *locale, const char *mode, const UChar *file, int32_t file_len) :
60 ICUBreakFunction(locale, mode, file, file_len)
86 ICUForward(const char *locale, const char *mode, const UChar *file, int32_t file_len) :
87 ICUBreakFunction(locale, mode, file, file_len)
  /external/dropbear/
progressmeter.c 120 int file_len; local
151 file_len = win_size - 35;
152 if (file_len > 0) {
153 len = snprintf(buf, file_len + 1, "\r%s", file);
156 if (len >= file_len + 1)
157 len = file_len;
158 for (i = len; i < file_len; i++ )
160 buf[file_len] = '\0';
  /external/openssh/
progressmeter.c 130 int file_len; local
161 file_len = win_size - 35;
162 if (file_len > 0) {
163 len = snprintf(buf, file_len + 1, "\r%s", file);
166 if (len >= file_len + 1)
167 len = file_len;
168 for (i = len; i < file_len; i++)
170 buf[file_len] = '\0';
  /system/extras/tests/framebuffer/
mdp_test.c 232 int file_len; local
235 if (open_file(optarg, &file_fd, &file_len, &src_fmt) < 0) {
240 if (get_pmem(&src_fd, &src_data, file_len) < 0) {
246 while (file_len) {
247 bytes = read(file_fd, ptr, file_len);
252 file_len -= bytes;
  /external/qemu/android/utils/
filelock.c 376 int file_len = strlen(file); local
377 int lock_len = file_len + sizeof(LOCK_NAME);
381 int temp_len = file_len + sizeof(TEMP_NAME);
383 int total_len = sizeof(FileLock) + file_len + lock_len + temp_len + 3;
388 memcpy( (char*)lock->file, file, file_len+1 );
390 lock->lock = lock->file + file_len + 1;
391 memcpy( (char*)lock->lock, file, file_len+1 );
  /external/chromium/net/disk_cache/
block_files.cc 404 size_t file_len = file->GetLength(); local
405 if (file_len < static_cast<size_t>(kBlockHeaderSize)) {
422 if (static_cast<int>(file_len) <
430 scoped_array<char> buf(new char[file_len]);
431 if (!file->Read(buf.get(), file_len, 0))
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
pcsc_funcs.c 241 int *ps_do, int *file_len)
247 if (file_len)
248 *file_len = -1;
273 (pos[1] == 1 || pos[1] == 2) && file_len) {
275 *file_len = (int) pos[2];
277 *file_len = ((int) pos[2] << 8) |
280 *file_len);
    [all...]
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 235 int *ps_do, int *file_len)
241 if (file_len)
242 *file_len = -1;
267 (pos[1] == 1 || pos[1] == 2) && file_len) {
269 *file_len = (int) pos[2];
271 *file_len = ((int) pos[2] << 8) |
274 *file_len);
    [all...]

Completed in 512 milliseconds