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

<<11121314151617181920>>

  /external/oprofile/libabi/
op_abi.c 81 FILE * fp; local
84 if ((fp = fopen(abi_file, "w")) == NULL)
88 fprintf(fp, "%s %u\n", abi_entry->name, abi_entry->offset);
89 fprintf(fp, "little_endian %d\n", op_little_endian());
91 fclose(fp);
  /external/qemu/distrib/libselinux/src/
enabled.c 14 FILE *fp; local
37 fp = fopen("/proc/filesystems", "r");
38 if (!fp)
41 while ((bufp = fgets(buf, sizeof buf - 1, fp)) != NULL) {
61 fclose(fp);
  /hardware/samsung_slsi/exynos5/libmemtrack/
mali.c 48 FILE *fp; local
58 fp = fopen("/sys/devices/platform/mali.0/gpu_memory", "r");
59 if (fp == NULL) {
67 if (fgets(line, sizeof(line), fp) == NULL) {
96 fclose(fp);
  /external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 62 void (*fp)(int) = f_void_1;
64 std::bind(fp, _1)(i);
69 void (*fp)(int) = f_void_1;
71 std::bind(fp, i)();
92 void (A_void_1::*fp)() = &A_void_1::mem1;
94 std::bind(fp, _1)(a);
98 std::bind(fp, _1)(ap);
103 void (A_void_1::*fp)() = &A_void_1::mem1;
105 std::bind(fp, a)();
109 std::bind(fp, ap)()
    [all...]
invoke_rvalue.pass.cpp 60 void (*fp)(int) = f_void_1;
61 std::bind(fp, _1)(3);
66 void (*fp)(int) = f_void_1;
67 std::bind(fp, 3)();
86 void (A_void_1::*fp)() = &A_void_1::mem1;
87 std::bind(fp, _1)(A_void_1());
91 std::bind(fp, _1)(&a);
96 void (A_void_1::*fp)() = &A_void_1::mem1;
97 std::bind(fp, A_void_1())();
101 std::bind(fp, &a)()
    [all...]
  /external/zlib/src/contrib/iostream2/
zstream.h 55 izstream(FILE* fp) : m_fp(0) { open(fp); }
70 void open(FILE* fp) {
71 SET_BINARY_MODE(fp);
73 m_fp = ::gzdopen(fileno(fp), "rb");
101 gzFile fp() { return m_fp; } function in class:izstream
116 return ::gzread(zs.fp(), x, items*sizeof(T));
124 ::gzread(zs.fp(), &x, sizeof(T));
140 ::gzread(zs.fp(), x, len.value());
148 ::gzread(zs.fp(), x, len.value())
234 gzFile fp() { return m_fp; } function in class:ozstream
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 62 void (*fp)(int) = f_void_1;
64 std::bind(fp, _1)(i);
69 void (*fp)(int) = f_void_1;
71 std::bind(fp, i)();
92 void (A_void_1::*fp)() = &A_void_1::mem1;
94 std::bind(fp, _1)(a);
98 std::bind(fp, _1)(ap);
103 void (A_void_1::*fp)() = &A_void_1::mem1;
105 std::bind(fp, a)();
109 std::bind(fp, ap)()
    [all...]
invoke_rvalue.pass.cpp 60 void (*fp)(int) = f_void_1;
61 std::bind(fp, _1)(3);
66 void (*fp)(int) = f_void_1;
67 std::bind(fp, 3)();
86 void (A_void_1::*fp)() = &A_void_1::mem1;
87 std::bind(fp, _1)(A_void_1());
91 std::bind(fp, _1)(&a);
96 void (A_void_1::*fp)() = &A_void_1::mem1;
97 std::bind(fp, A_void_1())();
101 std::bind(fp, &a)()
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
sampling_test.cc 59 FILE* fp = fopen(filename.c_str(), "w"); local
60 fwrite(s.data(), 1, s.length(), fp);
61 fclose(fp);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
sampling_test.cc 59 FILE* fp = fopen(filename.c_str(), "w"); local
60 fwrite(s.data(), 1, s.length(), fp);
61 fclose(fp);
  /external/clang/test/SemaCXX/
copy-initialization.cpp 11 void f(Y y, int *ip, float *fp) {
15 X x4 = fp; // expected-error{{no viable conversion}}
18 X x4a(fp);
  /external/iproute2/ip/
ipmroute.c 56 FILE *fp = fopen("/proc/net/ip_mr_vif", "r"); local
58 if (!fp)
61 if (!fgets(buf, sizeof(buf), fp)) {
62 fclose(fp);
65 while (fgets(buf, sizeof(buf), fp)) {
77 fclose(fp);
83 FILE *fp = fopen("/proc/net/ip_mr_cache", "r"); local
85 if (!fp)
88 if (!fgets(buf, sizeof(buf), fp)) {
89 fclose(fp);
    [all...]
rtmon.c 31 static void write_stamp(FILE *fp)
45 fwrite((void*)n1, 1, NLMSG_ALIGN(n1->nlmsg_len), fp);
51 FILE *fp = (FILE*)arg; local
53 write_stamp(fp);
54 fwrite((void*)n, 1, NLMSG_ALIGN(n->nlmsg_len), fp);
55 fflush(fp);
69 FILE *fp; local
150 fp = fopen(file, "w");
151 if (fp == NULL) {
164 write_stamp(fp);
    [all...]
  /external/libcxx/test/localization/locales/locale.global.templates/
use_facet.pass.cpp 42 const my_facet* fp = 0; local
47 fp = &f;
48 assert(fp->im_alive);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.global.templates/
use_facet.pass.cpp 42 const my_facet* fp = 0; local
47 fp = &f;
48 assert(fp->im_alive);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 4 an ordinary file, as long as you use fp.readline(). Allows recursive
11 fp = MultiFile(real_fp)
13 "read some lines from fp"
14 fp.push(separator)
16 "read lines from fp until it returns an empty string" (A)
17 if not fp.next(): break
18 fp.pop()
19 "read remaining lines from fp until it returns an empty string"
43 def __init__(self, fp, seekable=1):
44 self.fp = f
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sunaudiodev.py 15 fp = open(path, 'r')
16 data = fp.read()
17 fp.close()
test_applesingle.py 27 fp = open(test_support.TESTFN, 'w')
28 fp.write(applesingledata)
29 fp.close()
43 fp = MacOS.openrf(TESTFN2, '*rb')
45 fp = open(TESTFN2, 'rb')
46 filedata = fp.read(1000)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 4 an ordinary file, as long as you use fp.readline(). Allows recursive
11 fp = MultiFile(real_fp)
13 "read some lines from fp"
14 fp.push(separator)
16 "read lines from fp until it returns an empty string" (A)
17 if not fp.next(): break
18 fp.pop()
19 "read remaining lines from fp until it returns an empty string"
43 def __init__(self, fp, seekable=1):
44 self.fp = f
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sunaudiodev.py 15 fp = open(path, 'r')
16 data = fp.read()
17 fp.close()
test_applesingle.py 27 fp = open(test_support.TESTFN, 'w')
28 fp.write(applesingledata)
29 fp.close()
43 fp = MacOS.openrf(TESTFN2, '*rb')
45 fp = open(TESTFN2, 'rb')
46 filedata = fp.read(1000)
  /external/aac/libSYS/src/
genericStds.cpp 376 INT FDKfclose(FDKFILE *fp) { return fclose((FILE*)fp);}
379 INT FDKfseek(FDKFILE *fp, LONG OFFSET, int WHENCE) { return fseek((FILE*)fp, OFFSET, WHENCE);}
382 INT FDKftell(FDKFILE *fp) { return ftell((FILE*)fp); }
385 INT FDKfflush(FDKFILE *fp) { return fflush((FILE*)fp); }
392 UINT FDKfwrite(void *ptrf, INT size, UINT nmemb, FDKFILE *fp) { return fwrite(ptrf, size, nmemb, (FILE*)fp); }
    [all...]
  /external/iproute2/tc/
tc_monitor.c 40 FILE *fp = (FILE*)arg; local
61 fprintf(fp, "Unknown message: length %08d type %08x flags %08x\n",
89 FILE *fp; local
90 fp = fopen(file, "r");
91 if (fp == NULL) {
95 return rtnl_from_file(fp, accept_tcmsg, (void*)stdout);
  /external/qemu/slirp/
ip_input.c 52 register struct ipq *fp);
53 static void ip_freef(struct ipq *fp);
186 register struct ipq *fp; local
193 fp = container_of(l, struct ipq, ip_link);
194 if (ip->ip_id == fp->ipq_id &&
195 ip->ip_src.s_addr == fp->ipq_src.s_addr &&
196 ip->ip_dst.s_addr == fp->ipq_dst.s_addr &&
197 ip->ip_p == fp->ipq_p)
200 fp = NULL;
223 ip = ip_reass(ip, fp);
480 struct ipq *fp = container_of(l, struct ipq, ip_link); local
    [all...]
  /external/qemu/slirp-android/
ip_input.c 52 register struct ipq *fp);
53 static void ip_freef(struct ipq *fp);
186 register struct ipq *fp; local
193 fp = container_of(l, struct ipq, ip_link);
194 if (ip->ip_id == fp->ipq_id &&
195 ip_equal(ip->ip_src, fp->ipq_src) &&
196 ip_equal(ip->ip_dst, fp->ipq_dst) &&
197 ip->ip_p == fp->ipq_p)
200 fp = NULL;
223 ip = ip_reass(ip, fp);
480 struct ipq *fp = container_of(l, struct ipq, ip_link); local
    [all...]

Completed in 389 milliseconds

<<11121314151617181920>>