Home
last modified time | relevance | path

Searched defs:fp (Results 1 – 25 of 981) sorted by relevance

12345678910>>...40

/third_party/ltp/testcases/kernel/security/tomoyo/
Dtomoyo_policy_memory_test.c46 FILE *fp = fopen("/sys/kernel/security/tomoyo/meminfo", "r"); in get_meminfo() local
53 FILE *fp = fopen(policy_file, "r"); in check_policy_common() local
76 static inline void check_policy_written(FILE * fp, const int id) in check_policy_written()
82 static inline void check_policy_deleted(FILE * fp, const int id) in check_policy_deleted()
187 FILE *fp = fopen(policy_file, "w"); in domain_policy_test() local
219 FILE *fp = fopen(policy_file, "w"); in domain_policy_test() local
297 FILE *fp = fopen(policy_file, "w"); in exception_policy_test() local
328 FILE *fp = fopen(policy_file, "w"); in exception_policy_test() local
Dinclude.h89 FILE *fp = fopen(path, "w"); in write_sysctl() local
100 FILE *fp = fopen(path, "r"); in read_sysctl() local
163 FILE *fp = fopen(proc_policy_profile, "r"); in clear_status() local
238 FILE *fp = fopen(proc_policy_self_domain, "r"); in tomoyo_test_init() local
275 FILE *fp = fopen(proc_policy_domain_policy, "r"); in write_domain_policy() local
314 FILE *fp = fopen(proc_policy_exception_policy, "r"); in write_exception_policy() local
349 FILE *fp = fopen(proc_policy_profile, "r"); in set_profile() local
/third_party/selinux/checkpolicy/test/
Ddispol.c46 FILE * fp) in render_access_mask()
57 static int render_type(uint32_t type, policydb_t * p, FILE * fp) in render_type()
63 static int render_key(avtab_key_t * key, policydb_t * p, FILE * fp) in render_key()
88 policydb_t * p, FILE * fp) in render_av_rule()
166 static int display_avtab(avtab_t * a, uint32_t what, policydb_t * p, FILE * fp) in display_avtab()
181 static int display_bools(policydb_t * p, FILE * fp) in display_bools()
192 static void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp) in display_expr()
227 static int display_cond_expressions(policydb_t * p, FILE * fp) in display_cond_expressions()
263 static int change_bool(char *name, int state, policydb_t * p, FILE * fp) in change_bool()
277 static void display_policycaps(policydb_t * p, FILE * fp) in display_policycaps()
[all …]
Ddismod.c74 FILE * fp) in render_access_mask()
85 policydb_t * p, FILE * fp) in render_access_bitmap()
100 static void display_id(policydb_t * p, FILE * fp, uint32_t symbol_type, in display_id()
115 FILE * fp) in display_type_set()
178 static int display_mod_role_set(role_set_t * roles, policydb_t * p, FILE * fp) in display_mod_role_set()
214 FILE * fp) in display_avrule()
319 FILE *fp; in display_type_callback() local
358 static int display_types(policydb_t * p, FILE * fp) in display_types()
365 static int display_users(policydb_t * p, FILE * fp) in display_users()
384 static int display_bools(policydb_t * p, FILE * fp) in display_bools()
[all …]
/third_party/openssl/crypto/x509/
Dx_all.c110 X509 *d2i_X509_fp(FILE *fp, X509 **x509) in d2i_X509_fp()
115 int i2d_X509_fp(FILE *fp, X509 *x509) in i2d_X509_fp()
132 X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **crl) in d2i_X509_CRL_fp()
137 int i2d_X509_CRL_fp(FILE *fp, X509_CRL *crl) in i2d_X509_CRL_fp()
154 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7) in d2i_PKCS7_fp()
159 int i2d_PKCS7_fp(FILE *fp, PKCS7 *p7) in i2d_PKCS7_fp()
176 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req) in d2i_X509_REQ_fp()
181 int i2d_X509_REQ_fp(FILE *fp, X509_REQ *req) in i2d_X509_REQ_fp()
200 RSA *d2i_RSAPrivateKey_fp(FILE *fp, RSA **rsa) in d2i_RSAPrivateKey_fp()
205 int i2d_RSAPrivateKey_fp(FILE *fp, RSA *rsa) in i2d_RSAPrivateKey_fp()
[all …]
/third_party/boost/libs/thread/test/functional/invoker/
Dinvoker_lvalue_pass.cpp67 void (*fp)(int) = f_void_1; in test_void_1() local
69 boost::detail::invoker<void(*)(int), int>(fp, i)(); in test_void_1() local
83 void (*fp)(int) = f_void_1; in test_void_1() local
85 boost::detail::invoker<void(*)(int), int>(fp, i)(); in test_void_1() local
117 void (A_void_1::*fp)() = &A_void_1::mem1; in test_void_1() local
120 boost::detail::invoker<void (A_void_1::*)(), A_void_1>(fp, a)(); in test_void_1() local
124 boost::detail::invoker<void (A_void_1::*)(), A_void_1*>(fp, ap)(); in test_void_1() local
143 void (A_void_1::*fp)() const = &A_void_1::mem2; in test_void_1() local
145 boost::detail::invoker<void (A_void_1::*)() const, A_void_1>(fp, a)(); in test_void_1() local
149 boost::detail::invoker<void (A_void_1::*)() const, A_void_1*>(fp, ap)(); in test_void_1() local
[all …]
Dinvoker_rvalue_pass.cpp57 void (*fp)(int) = f_void_1; in test_void_1() local
58 boost::detail::invoker<void(*)(int), int>(fp, 3)(); in test_void_1() local
77 void (A_void_1::*fp)() = &A_void_1::mem1; in test_void_1() local
78 boost::detail::invoker<void (A_void_1::*)(), A_void_1>(fp, A_void_1())(); in test_void_1() local
88 boost::detail::invoker<void (A_void_1::*)(), A_void_1*>(fp, &a)(); in test_void_1() local
99 void (A_void_1::*fp)() const = &A_void_1::mem2; in test_void_1() local
100 boost::detail::invoker<void (A_void_1::*)() const, A_void_1>(fp, A_void_1())(); in test_void_1() local
104 boost::detail::invoker<void (A_void_1::*)() const, A_void_1*>(fp, &a)(); in test_void_1() local
139 int (*fp)(int) = f_int_1; in test_int_1() local
/third_party/openssl/crypto/ts/
Dts_asn1.c33 TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT **a) in d2i_TS_MSG_IMPRINT_fp()
39 int i2d_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT *a) in i2d_TS_MSG_IMPRINT_fp()
66 TS_REQ *d2i_TS_REQ_fp(FILE *fp, TS_REQ **a) in d2i_TS_REQ_fp()
71 int i2d_TS_REQ_fp(FILE *fp, TS_REQ *a) in i2d_TS_REQ_fp()
112 TS_TST_INFO *d2i_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO **a) in d2i_TS_TST_INFO_fp()
118 int i2d_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO *a) in i2d_TS_TST_INFO_fp()
193 TS_RESP *d2i_TS_RESP_fp(FILE *fp, TS_RESP **a) in d2i_TS_RESP_fp()
198 int i2d_TS_RESP_fp(FILE *fp, TS_RESP *a) in i2d_TS_RESP_fp()
/third_party/skia/third_party/externals/egl-registry/sdk/docs/man/html/
Dmakeindex.py143 fp = open(parent) variable
163 def printHeader(fp, flatMenu = False, letters = None, altMenu = None): argument
204 def printFooter(fp, flatMenu = False): argument
213 def addMenuLink(key, feature, fp): argument
222 def beginLetterSection(letter, fp): argument
229 def endLetterSection(opentable, fp): argument
255 def genDict(dict, title, whichKeys, fp): argument
293 fp = open(accordfilename, 'w') variable
304 fp = open(flatfilename, 'w') variable
/third_party/EGL/sdk/docs/man/html/
Dmakeindex.py143 fp = open(parent) variable
163 def printHeader(fp, flatMenu = False, letters = None, altMenu = None): argument
204 def printFooter(fp, flatMenu = False): argument
213 def addMenuLink(key, feature, fp): argument
222 def beginLetterSection(letter, fp): argument
229 def endLetterSection(opentable, fp): argument
255 def genDict(dict, title, whichKeys, fp): argument
293 fp = open(accordfilename, 'w') variable
304 fp = open(flatfilename, 'w') variable
/third_party/boost/libs/math/test/
Dtest_carlson.hpp33 value_type(*fp)(value_type, value_type, value_type) = ELLINT_RF_FUNCTION_TO_TEST; in do_test_ellint_rf() local
35 …value_type (*fp)(value_type, value_type, value_type) = boost::math::ellint_rf<value_type, value_ty… in do_test_ellint_rf() local
37 value_type (*fp)(value_type, value_type, value_type) = boost::math::ellint_rf; in do_test_ellint_rf() local
61 value_type(*fp)(value_type, value_type) = ELLINT_RC_FUNCTION_TO_TEST; in do_test_ellint_rc() local
63 value_type (*fp)(value_type, value_type) = boost::math::ellint_rc<value_type, value_type>; in do_test_ellint_rc() local
65 value_type (*fp)(value_type, value_type) = boost::math::ellint_rc; in do_test_ellint_rc() local
89 value_type(*fp)(value_type, value_type, value_type, value_type) = ELLINT_RJ_FUNCTION_TO_TEST; in do_test_ellint_rj() local
91 …value_type (*fp)(value_type, value_type, value_type, value_type) = boost::math::ellint_rj<value_ty… in do_test_ellint_rj() local
93 value_type (*fp)(value_type, value_type, value_type, value_type) = boost::math::ellint_rj; in do_test_ellint_rj() local
117 value_type(*fp)(value_type, value_type, value_type) = ELLINT_RD_FUNCTION_TO_TEST; in do_test_ellint_rd() local
[all …]
/third_party/selinux/libsepol/src/
Dwrite.c54 struct policy_file *fp; member
61 static int ebitmap_write(ebitmap_t * e, struct policy_file *fp) in ebitmap_write()
106 avtab_ptr_t cur, struct policy_file *fp, in avtab_write_item()
279 static int avtab_write(struct policydb *p, avtab_t * a, struct policy_file *fp) in avtab_write()
355 struct policy_file *fp) in mls_write_semantic_level_helper()
386 struct policy_file *fp) in mls_write_semantic_range_helper()
403 static int mls_write_level(mls_level_t * l, struct policy_file *fp) in mls_write_level()
423 static int mls_write_range_helper(mls_range_t * r, struct policy_file *fp) in mls_write_range_helper()
456 struct policy_file *fp = pd->fp; in sens_write() local
484 struct policy_file *fp = pd->fp; in cat_write() local
[all …]
/third_party/boost/boost/phoenix/bind/detail/cpp03/preprocessed/
Dfunction_ptr_40.hpp28 FP fp; member
52 FP fp; member
76 FP fp; member
100 FP fp; member
124 FP fp; member
148 FP fp; member
172 FP fp; member
196 FP fp; member
220 FP fp; member
244 FP fp; member
[all …]
Dfunction_ptr_50.hpp28 FP fp; member
52 FP fp; member
76 FP fp; member
100 FP fp; member
124 FP fp; member
148 FP fp; member
172 FP fp; member
196 FP fp; member
220 FP fp; member
244 FP fp; member
[all …]
Dfunction_ptr_30.hpp28 FP fp; member
52 FP fp; member
76 FP fp; member
100 FP fp; member
124 FP fp; member
148 FP fp; member
172 FP fp; member
196 FP fp; member
220 FP fp; member
244 FP fp; member
[all …]
Dfunction_ptr_20.hpp28 FP fp; member
52 FP fp; member
76 FP fp; member
100 FP fp; member
124 FP fp; member
148 FP fp; member
172 FP fp; member
196 FP fp; member
220 FP fp; member
244 FP fp; member
[all …]
Dfunction_ptr_10.hpp28 FP fp; member
52 FP fp; member
76 FP fp; member
100 FP fp; member
124 FP fp; member
148 FP fp; member
172 FP fp; member
196 FP fp; member
220 FP fp; member
Dmember_function_ptr_50.hpp35 FP fp; member
66 FP fp; member
97 FP fp; member
128 FP fp; member
159 FP fp; member
190 FP fp; member
221 FP fp; member
252 FP fp; member
283 FP fp; member
314 FP fp; member
[all …]
Dmember_function_ptr_40.hpp35 FP fp; member
66 FP fp; member
97 FP fp; member
128 FP fp; member
159 FP fp; member
190 FP fp; member
221 FP fp; member
252 FP fp; member
283 FP fp; member
314 FP fp; member
[all …]
Dmember_function_ptr_30.hpp35 FP fp; member
66 FP fp; member
97 FP fp; member
128 FP fp; member
159 FP fp; member
190 FP fp; member
221 FP fp; member
252 FP fp; member
283 FP fp; member
314 FP fp; member
[all …]
/third_party/ffmpeg/libavutil/mips/
Dmmiutils.h55 #define MMI_LWC1(fp, addr, bias) \ argument
58 #define MMI_ULWC1(fp, addr, bias) \ argument
62 #define MMI_LWXC1(fp, addr, stride, bias) \ argument
66 #define MMI_SWC1(fp, addr, bias) \ argument
69 #define MMI_USWC1(fp, addr, bias) \ argument
73 #define MMI_SWXC1(fp, addr, stride, bias) \ argument
77 #define MMI_LDC1(fp, addr, bias) \ argument
80 #define MMI_ULDC1(fp, addr, bias) \ argument
84 #define MMI_LDXC1(fp, addr, stride, bias) \ argument
88 #define MMI_SDC1(fp, addr, bias) \ argument
[all …]
/third_party/boost/libs/thread/test/functional/invoke/
Dinvoke_lvalue_pass.cpp63 void (*fp)(int) = f_void_1; in test_void_1() local
71 void (*fp)(int) = f_void_1; in test_void_1() local
79 void (*fp)(int) = f_void_1; in test_void_1() local
87 void (*fp)(int) = f_void_1; in test_void_1() local
113 void (A_void_1::*fp)() = &A_void_1::mem1; in test_void_1() local
125 void (A_void_1::*fp)() = &A_void_1::mem1; in test_void_1() local
138 void (A_void_1::*fp)() const = &A_void_1::mem2; in test_void_1() local
150 void (A_void_1::*fp)() const = &A_void_1::mem2; in test_void_1() local
195 int (*fp)(int) = f_int_1; in test_int_1() local
/third_party/openssl/ms/
Dapplink.c56 static int app_feof(FILE *fp) in app_feof()
61 static int app_ferror(FILE *fp) in app_ferror()
66 static void app_clearerr(FILE *fp) in app_clearerr()
71 static int app_fileno(FILE *fp) in app_fileno()
76 static int app_fsetmod(FILE *fp, char mod) in app_fsetmod()
/third_party/skia/src/gpu/
DSurfaceFillContext.h66 std::unique_ptr<GrFragmentProcessor> fp) { in fillRectToRectWithFP()
74 std::unique_ptr<GrFragmentProcessor> fp) { in fillRectToRectWithFP()
79 void fillWithFP(std::unique_ptr<GrFragmentProcessor> fp) { in fillWithFP()
87 void fillWithFP(const SkMatrix& localMatrix, std::unique_ptr<GrFragmentProcessor> fp) { in fillWithFP()
/third_party/expat/xmlwf/
Dxmlwf.c83 FILE *fp; member
94 FILE *fp = ((XmlwfUserData *)userData)->fp; in characterData() local
128 attributeValue(FILE *fp, const XML_Char *s) { in attributeValue()
187 FILE *fp = ((XmlwfUserData *)userData)->fp; in startElement() local
208 FILE *fp = ((XmlwfUserData *)userData)->fp; in endElement() local
231 FILE *fp = ((XmlwfUserData *)userData)->fp; in startElementNS() local
274 FILE *fp = ((XmlwfUserData *)userData)->fp; in endElementNS() local
292 FILE *fp = ((XmlwfUserData *)userData)->fp; in processingInstruction() local
552 FILE *fp = ((XmlwfUserData *)XML_GetUserData((XML_Parser)userData))->fp; in markup() local
560 FILE *fp = ((XmlwfUserData *)XML_GetUserData(parser))->fp; in metaLocation() local
[all …]

12345678910>>...40