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

  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/base/files/
memory_mapped_file_win.cc 40 int64 file_len = file_.GetLength(); local
41 if (file_len <= 0 || file_len > kint32max)
43 length_ = static_cast<size_t>(file_len);
memory_mapped_file_posix.cc 28 int64 file_len = file_.GetLength(); local
29 if (file_len == -1) {
33 map_size = static_cast<size_t>(file_len);
  /external/chromium_org/net/disk_cache/blockfile/
mapped_file.cc 40 size_t file_len = GetLength(); local
41 scoped_ptr<char[]> buf(new char[file_len]);
42 if (!Read(buf.get(), file_len, 0))
block_files.cc 481 size_t file_len = file->GetLength(); local
482 if (file_len < static_cast<size_t>(kBlockHeaderSize)) {
502 if (static_cast<int>(file_len) <
  /external/bluetooth/bluedroid/bta/fs/
bta_fs_ci.c 263 UINT16 file_len = strlen(p_file) + 1; local
264 UINT16 size = sizeof(tBTA_FS_CI_OPEN_EVT) + file_len;
274 BCM_STRNCPY_S (p, file_len, p_file, file_len-1);
275 p[file_len] = '\0';
  /external/qemu/android/utils/
filelock.c 396 int file_len = strlen(file); local
397 int lock_len = file_len + sizeof(LOCK_NAME);
401 int temp_len = file_len + sizeof(TEMP_NAME);
403 int total_len = sizeof(FileLock) + file_len + lock_len + temp_len + 3;
408 memcpy( (char*)lock->file, file, file_len+1 );
410 lock->lock = lock->file + file_len + 1;
411 memcpy( (char*)lock->lock, file, file_len+1 );
  /external/qemu/distrib/libsparse/src/
sparse.c 232 int64_t file_len = 0; local
253 if (file_len + count > len) {
259 if (!last_bb || (len - file_len > (len / 8))) {
260 backed_block_split(from->backed_block_list, bb, len - file_len);
265 file_len += count;
  /system/core/libsparse/
sparse.c 232 int64_t file_len = 0; local
253 if (file_len + count > len) {
259 if (!last_bb || (len - file_len > (len / 8))) {
260 backed_block_split(from->backed_block_list, bb, len - file_len);
265 file_len += count;
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
storage_api.py 779 file_len = '*'
781 file_len = self._written + len(data)
782 self._send_data(data, self._written, file_len)
784 if file_len != '*':
787 def _send_data(self, data, start_offset, file_len):
795 file_len: an int if this is the last data to append to the file.
803 (start_offset, end_offset, file_len))
805 headers['content-range'] = ('bytes */%s' % file_len)
809 if file_len == '*':
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 259 int *ps_do, int *file_len)
265 if (file_len)
266 *file_len = -1;
314 if ((pos[1] == 1 || pos[1] == 2) && file_len) {
316 *file_len = (int) pos[2];
318 *file_len = ((int) pos[2] << 8) |
321 *file_len);
    [all...]

Completed in 1303 milliseconds