HomeSort by relevance Sort by last modified time
    Searched refs:fread (Results 276 - 300 of 408) sorted by null

<<11121314151617

  /build/tools/atree/
files.cpp 224 if (1 != fread(buf, size, 1, f)) {
  /dalvik/tools/hprof-conv/
HprofConv.c 228 actual = fread(pBuf->storage + pBuf->curLen, 1, count, in);
  /development/samples/BrowserPlugin/jni/audio/
AudioPlugin.cpp 71 size_t amount = fread(buffer->bufferData, 1, buffer->size, play->file);
  /external/chromium/base/
file_util.cc 161 while ((len = fread(buf, 1, sizeof(buf), file)) > 0) {
  /external/chromium/testing/gtest/src/
gtest-port.cc 566 size_t bytes_last_read = 0; // # of bytes read in the last fread()
574 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
  /external/gtest/src/
gtest-port.cc 485 size_t bytes_last_read = 0; // # of bytes read in the last fread()
493 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
  /external/icu4c/test/cintltst/
ucnvseltst.c 242 if (length != fread(tt->text, 1, length, f)) {
  /external/llvm/utils/unittest/googletest/
gtest-port.cc 531 size_t bytes_last_read = 0; // # of bytes read in the last fread()
539 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
  /external/mesa3d/test/
main.cpp 44 int read = fread(shader_string, 1, fileSize, file);
  /external/protobuf/gtest/src/
gtest-port.cc 520 size_t bytes_last_read = 0; // # of bytes read in the last fread()
528 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
  /external/qemu/android/utils/
ini.c 290 len = fread(text, 1, size, fp);
  /external/qemu/
loader.c 83 /* return the amount read, just like fread. 0 may mean error or eof */
92 did = fread(buf, 1, want, f);
  /external/qemu-pc-bios/bochs/bios/
biossums.c 112 bios_len = fread(bios_data, 1, LEN_BIOS_DATA, stream);
  /external/quake/quake/src/WinQuake/
sys_win.cpp 207 x = fread (dest, 1, count, sys_handles[handle]);
  /external/srec/portable/src/
PANSIFileImpl.c 176 *count = fread(buffer, size, *count, impl->value);
  /external/zlib/contrib/puff/
puff.c     [all...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 492 while (size_t n = fread(buf, sizeof(char), BUFSIZ, in)) {
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
DecTestBench.c 195 fread(byteStrmStart, sizeof(u8), strmLen, finput);
TestBenchMultipleInstance.c 168 fread(decoder[i]->byteStrmStart, sizeof(u8), strmLen, finput);
  /hardware/ril/mock-ril/src/cpp/
js_support.cpp 117 size_t readLength = fread(buffer, 1, fileLength, f);
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/tests/
AmrEncTest.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/tests/
WbAmrEncTest.c     [all...]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_camera/src/
omx_proxy_camera.c 598 fread(buffer, 1,
603 ("fread: Reading error");
  /ndk/sources/host-tools/sed-4.2.1/sed/
utils.c 251 /* Panic on failing fread */
260 if (size && (nmemb=fread(ptr, size, nmemb, stream)) <= 0 && ferror(stream))
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
ImageUtils.cpp 303 eret = fread(ret, sizeof(ImageTypeBase), IMAGE_TYPE_NUM_CHANNELS*width*height, imgin);

Completed in 2337 milliseconds

<<11121314151617