Searched refs:fp (Results 126 - 150 of 1268) sorted by relevance

1234567891011>>

/external/openssl/crypto/x509/
H A Dx_all.c139 X509 *d2i_X509_fp(FILE *fp, X509 **x509) argument
141 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(X509), fp, x509);
144 int i2d_X509_fp(FILE *fp, X509 *x509) argument
146 return ASN1_item_i2d_fp(ASN1_ITEM_rptr(X509), fp, x509);
161 X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **crl) argument
163 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(X509_CRL), fp, crl);
166 int i2d_X509_CRL_fp(FILE *fp, X509_CRL *crl) argument
168 return ASN1_item_i2d_fp(ASN1_ITEM_rptr(X509_CRL), fp, crl);
183 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7) argument
185 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(PKCS7), fp, p
188 i2d_PKCS7_fp(FILE *fp, PKCS7 *p7) argument
205 d2i_X509_REQ_fp(FILE *fp, X509_REQ **req) argument
210 i2d_X509_REQ_fp(FILE *fp, X509_REQ *req) argument
229 d2i_RSAPrivateKey_fp(FILE *fp, RSA **rsa) argument
234 i2d_RSAPrivateKey_fp(FILE *fp, RSA *rsa) argument
239 d2i_RSAPublicKey_fp(FILE *fp, RSA **rsa) argument
245 d2i_RSA_PUBKEY_fp(FILE *fp, RSA **rsa) argument
252 i2d_RSAPublicKey_fp(FILE *fp, RSA *rsa) argument
257 i2d_RSA_PUBKEY_fp(FILE *fp, RSA *rsa) argument
297 d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa) argument
302 i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa) argument
307 d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa) argument
312 i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa) argument
343 d2i_EC_PUBKEY_fp(FILE *fp, EC_KEY **eckey) argument
348 i2d_EC_PUBKEY_fp(FILE *fp, EC_KEY *eckey) argument
353 d2i_ECPrivateKey_fp(FILE *fp, EC_KEY **eckey) argument
358 i2d_ECPrivateKey_fp(FILE *fp, EC_KEY *eckey) argument
427 d2i_PKCS8_fp(FILE *fp, X509_SIG **p8) argument
432 i2d_PKCS8_fp(FILE *fp, X509_SIG *p8) argument
449 d2i_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, PKCS8_PRIV_KEY_INFO **p8inf) argument
456 i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, PKCS8_PRIV_KEY_INFO *p8inf) argument
462 i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key) argument
473 i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey) argument
478 d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a) argument
483 i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey) argument
488 d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a) argument
[all...]
/external/bison/lib/
H A Dstdio-impl.h50 } *) fp)
57 # define fp_ fp
68 # define fp_ub ((struct __sfileext *) fp->_ext._base)->_ub
73 # define HASUB(fp) (fp_ub._base != NULL)
100 } *) fp)
102 # define fp_ fp
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_test.h58 write_tsv_header(FILE *fp);
62 test_some(unsigned verbose, FILE *fp,
66 test_single(unsigned verbose, FILE *fp);
69 test_all(unsigned verbose, FILE *fp);
101 dump_type(FILE *fp, struct lp_type type);
137 dump_vec(FILE *fp, struct lp_type type, const void *src);
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dopen_memstream.cc31 FILE *fp = open_memstream(&buf, &buf_len); local
32 fprintf(fp, "hello");
33 fflush(fp);
42 fprintf(fp, "%s", p);
44 fflush(fp);
49 fclose(fp);
/external/lldb/examples/python/
H A Dstacks.py27 if frame.fp == last_frame.fp:
30 frame_size = frame.fp - frame.sp
33 first_frame_size = last_frame.fp - last_frame.sp
43 frame_size = frame.fp - last_frame.fp
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test.h58 write_tsv_header(FILE *fp);
62 test_some(unsigned verbose, FILE *fp,
66 test_single(unsigned verbose, FILE *fp);
69 test_all(unsigned verbose, FILE *fp);
101 dump_type(FILE *fp, struct lp_type type);
137 dump_vec(FILE *fp, struct lp_type type, const void *src);
/external/iproute2/ip/
H A Dipmonitor.c40 FILE *fp = (FILE*)arg; local
43 print_timestamp(fp);
47 fprintf(fp, "[ROUTE]");
54 fprintf(fp, "[LINK]");
60 fprintf(fp, "[ADDR]");
66 fprintf(fp, "[ADDRLABEL]");
72 fprintf(fp, "[NEIGH]");
78 fprintf(fp, "[PREFIX]");
84 fprintf(fp, "[RULE]");
94 fprintf(fp, "Timestam
180 FILE *fp; local
[all...]
H A Dipmaddr.c88 FILE *fp = fopen("/proc/net/dev_mcast", "r"); local
90 if (!fp)
93 while (fgets(buf, sizeof(buf), fp)) {
119 fclose(fp);
126 FILE *fp = fopen("/proc/net/igmp", "r"); local
128 if (!fp)
131 if (!fgets(buf, sizeof(buf), fp)) {
132 fclose(fp);
140 while (fgets(buf, sizeof(buf), fp)) {
157 fclose(fp);
164 FILE *fp = fopen("/proc/net/igmp6", "r"); local
196 print_maddr(FILE *fp, struct ma_info *list) argument
231 print_mlist(FILE *fp, struct ma_info *list) argument
[all...]
H A Dipaddress.c86 void print_link_flags(FILE *fp, unsigned flags, unsigned mdown) argument
88 fprintf(fp, "<");
90 fprintf(fp, "NO-CARRIER%s", flags ? "," : "");
94 fprintf(fp, #f "%s", flags ? "," : ""); }
115 fprintf(fp, "%x", flags);
117 fprintf(fp, ",M-DOWN");
118 fprintf(fp, "> ");
185 static void print_linktype(FILE *fp, struct rtattr *tb) argument
197 fprintf(fp, "%s", _SL_);
198 fprintf(fp, "
220 print_vfinfo(FILE *fp, struct rtattr *vfinfo) argument
269 print_link_stats64(FILE *fp, const struct rtnl_link_stats64 *s) argument
317 print_link_stats(FILE *fp, const struct rtnl_link_stats *s) argument
363 FILE *fp = (FILE*)arg; local
507 FILE *fp = (FILE*)arg; local
720 print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo, FILE *fp) argument
[all...]
H A Diprule.c48 FILE *fp = (FILE*)arg; local
76 fprintf(fp, "Deleted ");
79 fprintf(fp, "%u:\t", *(unsigned*)RTA_DATA(tb[FRA_PRIORITY]));
81 fprintf(fp, "0:\t");
84 fprintf(fp, "not ");
88 fprintf(fp, "from %s/%u ", rt_addr_n2a(r->rtm_family,
95 fprintf(fp, "from %s ", format_host(r->rtm_family,
102 fprintf(fp, "from 0/%d ", r->rtm_src_len);
104 fprintf(fp, "from all ");
109 fprintf(fp, "t
[all...]
/external/libpng/contrib/libtests/
H A Dtimepng.c38 static int read_png(FILE *fp) argument
55 png_init_io(png_ptr, fp);
111 static int perform_one_test(FILE *fp, int nfiles) argument
117 rewind(fp);
123 if (read_png(fp))
125 if (ferror(fp))
181 static int add_one_file(FILE *fp, char *name) argument
192 putc(ch, fp);
204 if (ferror(fp))
225 FILE *fp local
[all...]
/external/lldb/utils/test/
H A Dras.py140 fp = open(path)
142 msg = MIMEText(fp.read(), _subtype=subtype)
143 fp.close()
145 fp = open(path, 'rb')
146 msg = MIMEImage(fp.read(), _subtype=subtype)
147 fp.close()
149 fp = open(path, 'rb')
150 msg = MIMEAudio(fp.read(), _subtype=subtype)
151 fp.close()
153 fp
[all...]
/external/llvm/test/MC/ARM/
H A Deh-directive-multiple-offsets.s19 .setfp fp, sp, #8
20 add fp, sp, #8
21 sub sp, fp, #8
46 .setfp fp, sp, #8
47 add fp, sp, #8
51 sub sp, fp, #8
76 .setfp fp, sp, #4
77 add fp, sp, #4
80 .setfp fp, sp, #4
81 add fp, s
[all...]
H A Deh-directive-setfp.s34 .setfp fp, sp, #0
35 add fp, sp, #0
36 sub sp, fp, #0
63 .setfp fp, sp, #-4
64 add fp, sp, #4
65 sub sp, fp, #4
76 .setfp fp, sp, #-0x100
77 add fp, sp, #0x100
78 sub sp, fp, #0x100
106 .setfp fp, s
[all...]
H A Deh-directive-setfp-diagnostics.s16 .setfp fp, sp, #0
18 @ CHECK: .setfp fp, sp, #0
35 .setfp fp, sp, #0
37 @ CHECK: .setfp fp, sp, #0
44 @ TEST3: .setfp with bad fp register
67 .setfp fp, 0, #0
69 @ CHECK: .setfp fp, 0, #0
83 .setfp fp, r0, #0
84 @ CHECK: error: register should be either $sp or the latest fp register
85 @ CHECK: .setfp fp, r
[all...]
/external/oprofile/libutil/
H A Dop_fileio.c24 FILE * fp; local
26 fp = fopen(name, mode);
28 if (!fp) {
36 return fp;
52 void op_close_file(FILE * fp) argument
54 if (fclose(fp))
59 void op_write_file(FILE * fp, void const * buf, size_t size) argument
66 written = fwrite(buf, size, 1, fp);
77 void op_write_u8(FILE * fp, u8 val) argument
79 op_write_file(fp,
83 op_write_u32(FILE * fp, u32 val) argument
89 op_write_u64(FILE * fp, u64 val) argument
97 FILE * fp; local
126 op_get_line(FILE * fp) argument
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Drdswitch.c91 FILE * fp; local
96 if ((fp = fopen(filename, "r")) == NULL) {
102 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
105 fclose(fp);
110 if (! read_text_integer(fp, &val, &termchar)) {
112 fclose(fp);
129 fclose(fp);
133 fclose(fp);
187 FILE * fp; local
194 if ((fp
[all...]
/external/ipsec-tools/src/racoon/
H A Dlogger.c126 FILE *fp; local
130 fp = fopen(p->fname, "a");
131 if (fp == NULL)
133 fprintf(fp, "%s", str);
134 fclose(fp);
144 FILE *fp; local
148 fp = fopen(p->fname, "a");
149 if (fp == NULL)
152 vfprintf(fp, fmt, ap);
155 fclose(fp);
163 FILE *fp; local
183 FILE *fp; local
[all...]
/external/jpeg/
H A Drdswitch.c85 FILE * fp; local
90 if ((fp = fopen(filename, "r")) == NULL) {
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
99 fclose(fp);
104 if (! read_text_integer(fp, &val, &termchar)) {
106 fclose(fp);
117 fclose(fp);
121 fclose(fp);
175 FILE * fp; local
182 if ((fp
[all...]
/external/qemu/distrib/jpeg-6b/
H A Drdswitch.c85 FILE * fp; local
90 if ((fp = fopen(filename, "r")) == NULL) {
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
99 fclose(fp);
104 if (! read_text_integer(fp, &val, &termchar)) {
106 fclose(fp);
117 fclose(fp);
121 fclose(fp);
175 FILE * fp; local
182 if ((fp
[all...]
/external/blktrace/btt/
H A Daqd.c28 FILE *fp; member in struct:aqd_info
44 if ((ap->fp = my_fopen(oname, "w")) == NULL) {
48 add_file(ap->fp, oname);
64 fprintf(ap->fp, "%lf %d\n%lf %d\n", ts, ap->na, ts, ap->na + 1);
75 fprintf(ap->fp, "%lf %d\n%lf %d\n",
/external/libselinux/src/
H A Denabled.c14 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);
/external/linux-tools-perf/perf-3.12.0/tools/lib/lk/
H A Ddebugfs.c27 FILE *fp; local
43 fp = fopen("/proc/mounts", "r");
44 if (fp == NULL)
47 while (fscanf(fp, "%*s %" STR(PATH_MAX) "s %99s %*s %*d %*d\n",
52 fclose(fp);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcolor.c195 static int __color_vfprintf(FILE *fp, const char *color, const char *fmt, argument
204 if (isatty(fileno(fp)) || pager_in_use())
211 r += fprintf(fp, "%s", color);
212 r += vfprintf(fp, fmt, args);
214 r += fprintf(fp, "%s", PERF_COLOR_RESET);
216 r += fprintf(fp, "%s", trail);
226 int color_vfprintf(FILE *fp, const char *color, const char *fmt, va_list args) argument
228 return __color_vfprintf(fp, color, fmt, args, NULL);
243 int color_fprintf(FILE *fp, const char *color, const char *fmt, ...) argument
249 r = color_vfprintf(fp, colo
254 color_fprintf_ln(FILE *fp, const char *color, const char *fmt, ...) argument
269 color_fwrite_lines(FILE *fp, const char *color, size_t count, const char *buf) argument
310 percent_color_fprintf(FILE *fp, const char *fmt, double percent) argument
[all...]
H A Dcolor.h37 int color_vfprintf(FILE *fp, const char *color, const char *fmt, va_list args);
38 int color_fprintf(FILE *fp, const char *color, const char *fmt, ...);
40 int color_fprintf_ln(FILE *fp, const char *color, const char *fmt, ...);
41 int color_fwrite_lines(FILE *fp, const char *color, size_t count, const char *buf);
43 int percent_color_fprintf(FILE *fp, const char *fmt, double percent);

Completed in 523 milliseconds

1234567891011>>