HomeSort by relevance Sort by last modified time
    Searched defs:fp (Results 176 - 200 of 757) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/openssl/crypto/bio/
bss_file.c 276 FILE *fp=(FILE *)b->ptr; local
287 ret=(long)fseek(fp,num,0);
291 ret=(long)UP_feof(fp);
293 ret=(long)feof(fp);
300 ret=ftell(fp);
395 fp=fopen(ptr,p);
396 if (fp == NULL)
404 b->ptr=fp;
  /external/openssl/crypto/x509v3/
v3_addr.c 1273 IPAddressFamily *fp = sk_IPAddressFamily_value(x->rfc3779_addr, k); local
1299 IPAddressFamily *fp = sk_IPAddressFamily_value(x->rfc3779_addr, j); local
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_parse_proc.c 94 FILE * fp; local
107 fp = op_try_open_file(mapsfile, "r");
108 if (!fp)
120 line = op_get_line(fp);
161 op_close_file(fp);
169 FILE * fp; local
176 fp = op_try_open_file(status_file, "r");
177 if (!fp)
181 line = op_get_line(fp);
187 op_close_file(fp);
    [all...]
  /external/protobuf/gtest/test/
gtest-filepath_test.cc 526 FilePath fp; local
527 EXPECT_STREQ("", fp.c_str());
531 const FilePath fp("spicy");
532 EXPECT_STREQ("spicy", fp.c_str());
534 const FilePath fp_copy(fp);
539 const FilePath fp(String("cider"));
540 EXPECT_STREQ("cider", fp.c_str());
  /external/qemu/
loadpng.c 14 FILE *fp = 0; local
36 fp = fopen(fn, "rb");
37 if(fp == 0) {
42 if(fread(header, 8, 1, fp) != 1) {
56 if(fp != 0) fclose(fp);
62 png_init_io(p, fp);
117 fclose(fp);
  /external/webrtc/src/system_wrappers/source/
cpu_linux.cc 113 FILE* fp = fopen("/proc/stat", "r"); local
114 if (!fp)
120 if (fgets(line, 100, fp) == NULL) {
121 fclose(fp);
126 fclose(fp);
130 fclose(fp);
139 fclose(fp);
151 if (fgets(line, 100, fp) == NULL) {
152 fclose(fp);
157 fclose(fp);
173 FILE* fp = fopen("\/proc\/stat", "r"); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
EvaluationTestBench.c 278 FILE *fp; local
280 fp = fopen("dec_api.trc", "at");
282 if (!fp)
285 fwrite(string, 1, strlen(string), fp);
286 fwrite("\n", 1,1, fp);
288 fclose(fp);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicColorMatrix.java 64 FieldPacker fp = new FieldPacker(16*4); local
65 fp.addMatrix(mMatrix);
66 setVar(0, fp);
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/linux/
ml_stored_data.c 42 FILE *fp; local
46 fp = fopen(MLCAL_FILE,"rb");
47 if (fp == NULL) {
53 fseek (fp, 0 , SEEK_END);
54 fsize = ftell (fp);
55 rewind (fp);
61 fclose(fp);
65 *bytesRead = fread(*calData, 1, fsize, fp);
77 fclose(fp);
83 FILE *fp; local
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
inv_sysfs_utils.c 28 FILE *fp; local
33 fp = fopen(filename, "w");
34 if (!fp)
36 count = fprintf(fp, "%ld", data);
37 fclose(fp);
50 FILE *fp; local
55 fp = fopen(filename, "r");
56 if (!fp)
58 count = fread(data, 1, num_bytes, fp);
59 fclose(fp);
    [all...]
ml_stored_data.c 46 FILE *fp; local
50 fp = fopen(MLCAL_FILE,"rb");
51 if (fp == NULL) {
57 fseek (fp, 0 , SEEK_END);
58 fsize = ftell (fp);
59 rewind (fp);
65 fclose(fp);
69 *bytesRead = fread(*calData, 1, fsize, fp);
81 fclose(fp);
87 FILE *fp; local
    [all...]
  /hardware/qcom/display/msm8960/libmemtrack/
kgsl.c 49 FILE *fp; local
68 fp = fopen(tmp, "r");
69 if (fp == NULL) {
77 fclose(fp);
88 if (fgets(line, sizeof(line), fp) == NULL) {
151 fclose(fp);
  /hardware/qcom/display/msm8974/libmemtrack/
kgsl.c 49 FILE *fp; local
68 fp = fopen(tmp, "r");
69 if (fp == NULL) {
77 fclose(fp);
88 if (fgets(line, sizeof(line), fp) == NULL) {
151 fclose(fp);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke.pass.cpp 53 void (*fp)(int) = f_void_1;
54 std::function<void (int)> r1(fp);
71 void (A_void_1::*fp)() = &A_void_1::mem1;
72 std::function<void (A_void_1)> r1(fp);
78 std::function<void (A_void_1*)> r2 = fp;
85 void (A_void_1::*fp)() const = &A_void_1::mem2;
86 std::function<void (A_void_1)> r1(fp);
91 std::function<void (A_void_1*)> r2(fp);
130 int (*fp)(int) = f_int_1;
131 std::function<int (int)> r1(fp);
164 int A_int_1::*fp = &A_int_1::data_; member in class:A_int_1
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
invoke.pass.cpp 56 void (*fp)(int) = f_void_1;
57 std::reference_wrapper<void (*)(int)> r1(fp);
74 void (A_void_1::*fp)() = &A_void_1::mem1;
75 std::reference_wrapper<void (A_void_1::*)()> r1(fp);
87 void (A_void_1::*fp)() const = &A_void_1::mem2;
88 std::reference_wrapper<void (A_void_1::*)() const> r1(fp);
131 int (*fp)(int) = f_int_1;
132 std::reference_wrapper<int (*)(int)> r1(fp);
145 int (A_int_1::*fp)() = &A_int_1::mem1;
146 std::reference_wrapper<int (A_int_1::*)()> r1(fp);
163 int A_int_1::*fp = &A_int_1::data_; member in class:A_int_1
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 596 FilePath fp; local
597 EXPECT_EQ("", fp.string());
601 const FilePath fp("spicy");
602 EXPECT_EQ("spicy", fp.string());
604 const FilePath fp_copy(fp);
609 const FilePath fp(std::string("cider"));
610 EXPECT_EQ("cider", fp.string());
  /sdk/emulator/opengl/host/tools/emugen/
TypeFactory.cpp 71 FILE *fp = fopen(filename.c_str(), "rt"); local
72 if (fp == NULL) {
78 while(fgets(line, sizeof(line), fp) != NULL) {
  /system/core/debuggerd/
backtrace.c 41 FILE* fp; local
44 if ((fp = fopen(path, "r"))) {
45 procname = fgets(procnamebuf, sizeof(procnamebuf), fp);
46 fclose(fp);
70 FILE* fp; local
73 if ((fp = fopen(path, "r"))) {
74 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp);
75 fclose(fp);
  /bionic/libc/bionic/
sysconf.cpp 99 FILE* fp = fopen("/proc/stat", "r"); local
100 if (fp == NULL) {
106 while (fgets(buf, sizeof(buf), fp) != NULL) {
117 fclose(fp);
122 FILE* fp = fopen("/proc/meminfo", "r"); local
123 if (fp == NULL) {
129 while (fgets(buf, sizeof(buf), fp) != NULL) {
136 fclose(fp);
  /bootable/recovery/minui/
resources.c 58 FILE* fp = fopen(resPath, "rb"); local
59 if (fp == NULL) {
64 size_t bytesRead = fread(header, 1, sizeof(header), fp);
92 png_init_io(png_ptr, fp);
171 if (fp != NULL) {
172 fclose(fp);
211 FILE* fp = fopen(resPath, "rb"); local
212 if (fp == NULL) {
217 size_t bytesRead = fread(header, 1, sizeof(header), fp);
245 png_init_io(png_ptr, fp);
    [all...]
  /dalvik/vm/
Misc.h 114 FILE* fp; member in struct:DebugOutputTarget::__anon847::__anon849
124 void dvmCreateFileOutputTarget(DebugOutputTarget* target, FILE* fp);
  /dalvik/vm/hprof/
HprofOutput.cpp 75 FILE* fp = open_memstream(&ctx->fileDataPtr, &ctx->fileDataSize); local
76 if (fp == NULL) {
84 ctx->memFp = fp;
101 fwrite(magic, 1, sizeof(magic), fp);
107 fwrite(buf, 1, sizeof(u4), fp);
120 fwrite(buf, 1, sizeof(u4), fp);
125 fwrite(buf, 1, sizeof(u4), fp); //xxx fix the time
129 int hprofFlushRecord(hprof_record_t *rec, FILE *fp)
139 nb = fwrite(headBuf, 1, sizeof(headBuf), fp);
143 nb = fwrite(rec->body, 1, rec->length, fp);
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpeg_test.c 43 FILE *fp = fopen(filename, "w+"); \
44 if (fp) { \
45 rc = fwrite(p_addr, 1, len, fp); \
46 fclose(fp); \
143 FILE *fp = NULL; local
145 fp = fopen(p_obj->filename, "rb");
146 if (!fp) {
150 fseek(fp, 0, SEEK_END);
151 file_size = ftell(fp);
152 fseek(fp, 0, SEEK_SET)
    [all...]
  /external/aac/libSYS/include/
wav_file.h 158 FDKFILE *fp; member in struct:WAV
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
UnresolvedPrincipalTest.java 56 FakePrincipal fp = new FakePrincipal(name); local
59 .equals(fp));
61 .equals(fp));
63 UnresolvedPrincipal.WILDCARD).equals(fp));
66 "sdkljfgbkwe").equals(fp));
86 FakePrincipal fp = new FakePrincipal(name); local
88 .implies(fp));
90 .implies(fp));
92 UnresolvedPrincipal.WILDCARD).implies(fp));
94 UnresolvedPrincipal.WILDCARD).implies(fp));
    [all...]

Completed in 445 milliseconds

1 2 3 4 5 6 78 91011>>