Home
last modified time | relevance | path

Searched defs:rec (Results 1 – 25 of 367) sorted by relevance

12345678910>>...15

/external/selinux/libselinux/src/
Dlabel.c143 static int selabel_fini(const struct selabel_handle *rec, in selabel_fini()
162 selabel_lookup_common(struct selabel_handle *rec, bool translating, in selabel_lookup_common()
183 selabel_lookup_bm_common(struct selabel_handle *rec, bool translating, in selabel_lookup_bm_common()
211 struct selabel_handle *rec = NULL; in selabel_open() local
240 int selabel_lookup(struct selabel_handle *rec, char **con, in selabel_lookup()
253 int selabel_lookup_raw(struct selabel_handle *rec, char **con, in selabel_lookup_raw()
266 bool selabel_partial_match(struct selabel_handle *rec, const char *key) in selabel_partial_match()
279 bool selabel_get_digests_all_partial_matches(struct selabel_handle *rec, in selabel_get_digests_all_partial_matches()
294 bool selabel_hash_all_partial_matches(struct selabel_handle *rec, in selabel_hash_all_partial_matches()
303 int selabel_lookup_best_match(struct selabel_handle *rec, char **con, in selabel_lookup_best_match()
[all …]
Dlabel_backends_android.c85 static int process_line(struct selabel_handle *rec, in process_line()
146 static int process_file(struct selabel_handle *rec, const char *path) in process_file()
214 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, in init()
279 static void closef(struct selabel_handle *rec) in closef()
305 static struct selabel_lookup_rec *property_lookup(struct selabel_handle *rec, in property_lookup()
340 static struct selabel_lookup_rec *lookup_exact_match(struct selabel_handle *rec, in lookup_exact_match()
377 int selabel_property_init(struct selabel_handle *rec, in selabel_property_init()
395 int selabel_exact_match_init(struct selabel_handle *rec, in selabel_exact_match_init()
Dlabel_media.c34 unsigned lineno, struct selabel_handle *rec) in process_line()
70 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, in init()
164 static void close(struct selabel_handle *rec) in close()
189 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, in lookup()
214 static void stats(struct selabel_handle *rec) in stats()
226 int selabel_media_init(struct selabel_handle *rec, in selabel_media_init()
Dlabel_x.c36 unsigned lineno, struct selabel_handle *rec) in process_line()
97 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, in init()
191 static void close(struct selabel_handle *rec) in close()
216 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, in lookup()
240 static void stats(struct selabel_handle *rec) in stats()
252 int selabel_x_init(struct selabel_handle *rec, const struct selinux_opt *opts, in selabel_x_init()
Dlabel_db.c175 db_close(struct selabel_handle *rec) in db_close()
197 db_lookup(struct selabel_handle *rec, const char *key, int type) in db_lookup()
224 db_stats(struct selabel_handle *rec) in db_stats()
241 struct selabel_handle *rec) in db_init()
371 int selabel_db_init(struct selabel_handle *rec, in selabel_db_init()
Dlabel_file.c170 struct selabel_handle *rec, const char *path) in process_text_file()
188 static int load_mmap(FILE *fp, size_t len, struct selabel_handle *rec, in load_mmap()
611 struct selabel_handle *rec, in process_file()
797 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, in init()
938 static void closef(struct selabel_handle *rec) in closef()
993 static struct spec **lookup_all(struct selabel_handle *rec, in lookup_all()
1136 static struct spec *lookup_common(struct selabel_handle *rec, in lookup_common()
1154 static bool get_digests_all_partial_matches(struct selabel_handle *rec, in get_digests_all_partial_matches()
1202 static bool hash_all_partial_matches(struct selabel_handle *rec, const char *key, uint8_t *digest) in hash_all_partial_matches()
1233 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, in lookup()
[all …]
/external/antlr/runtime/Cpp/include/
Dantlr3rewritestreams.inl12 RecognizerType* rec, ANTLR_UINT8* description, TokenType* oneElement)
21 RecognizerType* rec, ANTLR_UINT8* description, const ElementsType& elements)
29 RecognizerType* rec, ANTLR_UINT8* description)
40 RecognizerType* rec, ANTLR_UINT8* description)
46 …RuleTokenStream<ImplTraits>::RewriteRuleTokenStream(TreeAdaptorType* adaptor, RecognizerType* rec,
54 RecognizerType* rec, ANTLR_UINT8* description, const ElementsType& elements)
61 RecognizerType* rec, ANTLR_UINT8* description)
67 …SubtreeStream<ImplTraits>::RewriteRuleSubtreeStream(TreeAdaptorType* adaptor, RecognizerType* rec,
75 RecognizerType* rec, ANTLR_UINT8* description, const ElementsType& elements)
82 RecognizerType* rec, ANTLR_UINT8* description)
[all …]
/external/rust/android-crates-io/crates/csv/src/
Dbyte_record.rs896 let mut rec = ByteRecord::new(); in record_1() localVariable
907 let mut rec = ByteRecord::new(); in record_2() localVariable
920 let rec = ByteRecord::new(); in empty_record() localVariable
929 let mut rec = ByteRecord::from(vec![b" \t\n\r\x0c"]); in trim_whitespace_only() localVariable
936 let mut rec = ByteRecord::from(vec![b" abc"]); in trim_front() localVariable
940 let mut rec = ByteRecord::from(vec![b(" abc"), b(" xyz")]); in trim_front() localVariable
948 let mut rec = ByteRecord::from(vec![b"abc "]); in trim_back() localVariable
952 let mut rec = ByteRecord::from(vec![b("abc "), b("xyz ")]); in trim_back() localVariable
960 let mut rec = ByteRecord::from(vec![b" abc "]); in trim_both() localVariable
964 let mut rec = ByteRecord::from(vec![b(" abc "), b(" xyz ")]); in trim_both() localVariable
[all …]
Dstring_record.rs753 let mut rec = StringRecord::from(vec![" abc"]); in trim_front() localVariable
757 let mut rec = StringRecord::from(vec![" abc", " xyz"]); in trim_front() localVariable
765 let mut rec = StringRecord::from(vec!["abc "]); in trim_back() localVariable
769 let mut rec = StringRecord::from(vec!["abc ", "xyz "]); in trim_back() localVariable
777 let mut rec = StringRecord::from(vec![" abc "]); in trim_both() localVariable
781 let mut rec = StringRecord::from(vec![" abc ", " xyz "]); in trim_both() localVariable
789 let mut rec = StringRecord::from(vec![""]); in trim_does_not_panic_on_empty_records_1() localVariable
796 let mut rec = StringRecord::from(vec!["", ""]); in trim_does_not_panic_on_empty_records_2() localVariable
804 let mut rec = StringRecord::new(); in trim_does_not_panic_on_empty_records_3() localVariable
811 let mut rec = StringRecord::from(vec![ in trim_whitespace_only() localVariable
Dreader.rs1909 rec: StringRecord, field
1967 rec: StringRecord, field
2015 rec: StringRecord, field
2057 rec: StringRecord, field
2091 rec: ByteRecord, field
2133 rec: ByteRecord, field
2192 let mut rec = ByteRecord::new(); in read_byte_record() localVariable
2216 let mut rec = ByteRecord::new(); in read_trimmed_records_and_headers() localVariable
2221 let mut rec = StringRecord::new(); in read_trimmed_records_and_headers() localVariable
2242 let mut rec = ByteRecord::new(); in read_trimmed_header() localVariable
[all …]
/external/rust/android-crates-io/crates/darling/tests/
Dfrom_generics.rs33 let rec: MyReceiver = fdi("struct Baz;").expect("Input is well-formed"); in no_generics() localVariable
41 let rec: MyReceiver = fdi(r#" in expand_some() localVariable
85 let rec: PassthroughReceiver = fdi(r#" in passthrough() localVariable
103 let rec: MyReceiver = fdi(r#" in where_clause() localVariable
123 let rec: WorigReceiver = fdi(r#" in with_original() localVariable
165 let rec: IgnoredReceiver = fdi(r#" in ignored() localVariable
/external/pytorch/torch/csrc/autograd/
Drecord_function_ops.cpp22 at::RecordFunction& rec) { in record_function_enter()
37 auto rec = std::make_unique<at::RecordFunction>(at::RecordScope::USER_SCOPE); in record_function_enter_legacy() local
46 auto rec = in record_function_enter_new() local
54 auto& rec = at::cpp_custom_type_hack::cast<at::RecordFunction>(handle); in getRecordFunctionFromTensor() local
59 static void record_function_exit(at::RecordFunction& rec) { in record_function_exit()
67 auto& rec = getRecordFunctionFromTensor(handle); in record_function_exit_legacy() local
85 auto& rec = get_record(); in _call_end_callbacks_on_fut() local
/external/coreboot/src/lib/
Dcoreboot_table.c63 struct lb_record *rec; in lb_first_record() local
70 struct lb_record *rec; in lb_last_record() local
78 struct lb_record *rec; in lb_new_record() local
93 struct lb_record *rec; in lb_memory() local
242 struct lb_mmc_info *rec; in lb_mmc_info() local
300 struct lb_record *rec; in lb_mainboard() local
323 struct lb_record *rec; in lb_board_config() local
352 struct lb_record *rec; in lb_cmos_checksum() local
382 struct lb_string *rec; in lb_strings() local
394 struct lb_timestamp *rec; in lb_record_version_timestamp() local
[all …]
/external/skia/src/core/
DSkResourceCache.cpp118 Rec* rec = fHead; in ~SkResourceCache() local
133 Rec* rec = *found; in find() local
157 void SkResourceCache::add(Rec* rec, void* payload) { in add()
191 void SkResourceCache::remove(Rec* rec) { in remove()
227 Rec* rec = fTail; in purgeAsNeeded() local
259 Rec* rec = fTail; in purgeSharedID() local
288 Rec* rec = fTail; in visitAll() local
319 void SkResourceCache::release(Rec* rec) { in release()
339 void SkResourceCache::moveToHead(Rec* rec) { in moveToHead()
358 void SkResourceCache::addToHead(Rec* rec) { in addToHead()
[all …]
/external/antlr/runtime/C/src/
Dantlr3rewritestreams.c187 antlr3RewriteRuleElementStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec,… in antlr3RewriteRuleElementStreamNewAE()
257 antlr3RewriteRuleElementStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec in antlr3RewriteRuleElementStreamNewAEE()
280 antlr3RewriteRuleElementStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec in antlr3RewriteRuleElementStreamNewAEV()
309 antlr3RewriteRuleTOKENStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, p… in antlr3RewriteRuleTOKENStreamNewAE()
333 antlr3RewriteRuleTOKENStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, … in antlr3RewriteRuleTOKENStreamNewAEE()
352 antlr3RewriteRuleTOKENStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, … in antlr3RewriteRuleTOKENStreamNewAEV()
373 antlr3RewriteRuleSubtreeStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec,… in antlr3RewriteRuleSubtreeStreamNewAE()
395 antlr3RewriteRuleSubtreeStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec in antlr3RewriteRuleSubtreeStreamNewAEE()
418 antlr3RewriteRuleSubtreeStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec in antlr3RewriteRuleSubtreeStreamNewAEV()
442 antlr3RewriteRuleNODEStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pA… in antlr3RewriteRuleNODEStreamNewAE()
[all …]
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/io/
DUTF8WriterTest.java16 BufferRecycler rec = new BufferRecycler(); in testSimple() local
47 BufferRecycler rec = new BufferRecycler(); in testSimpleAscii() local
68 BufferRecycler rec = new BufferRecycler(); in testFlushAfterClose() local
89 BufferRecycler rec = new BufferRecycler(); in testSurrogatesOk() local
116 BufferRecycler rec = new BufferRecycler(); in testSurrogatesFail() local
/external/sdv/vsomeip/third_party/boost/endian/example/
Duse_cases.cpp40 Record rec; variable
64 Record rec; variable
82 Record rec; variable
111 Record rec; variable
134 Record rec; variable
/external/trace-cmd/python/
Dtracecmdgui.py87 def on_get_path(self, rec): argument
93 def on_get_value(self, rec, col): argument
99 def on_iter_next(self, rec): argument
104 def on_iter_children(self, rec): argument
109 def on_iter_has_child(self, rec): argument
112 def on_iter_n_children(self, rec): argument
117 def on_iter_nth_child(self, rec, n): argument
/external/skia/tools/
DSkMetaData.cpp15 Rec* rec = fRec; in reset() local
59 Rec* rec; in set() local
98 const Rec* rec = this->find(name, kS32_Type); in findS32() local
111 const Rec* rec = this->find(name, kScalar_Type); in findScalar() local
124 const Rec* rec = this->find(name, kScalar_Type); in findScalars() local
137 const Rec* rec = this->find(name, kPtr_Type); in findPtr() local
151 const Rec* rec = this->find(name, kBool_Type); in findBool() local
250 void SkMetaData::Rec::Free(Rec* rec) { in Free()
/external/skia/src/shaders/
DSkShaderBase.cpp24 std::optional<MatrixRec> MatrixRec::apply(const SkStageRec& rec, const SkMatrix& postInv) const { in apply() argument
94 SkShaderBase::Context* SkShaderBase::makeContext(const ContextRec& rec, SkArenaAlloc* alloc) const { in makeContext() argument
108 SkShaderBase::Context::Context(const SkShaderBase& shader, const ContextRec& rec) in Context()
132 bool SkShaderBase::appendRootStages(const SkStageRec& rec, const SkMatrix& ctm) const { in appendRootStages() argument
/external/skia/tests/
DNdkEncodeTest.cpp78 for (const auto& rec : gRecs) { in DEF_TEST() local
165 for (const auto& rec : gRecs) { in DEF_TEST() local
188 for (const auto& rec : gRecs) { in DEF_TEST() local
221 for (const auto& rec : gRecs) { in DEF_TEST() local
230 for (const auto& rec : gRecs) { in DEF_TEST() local
246 for (const auto& rec : gRecs) { in DEF_TEST() local
313 for (const auto& rec : gRecs) { in DEF_TEST() local
377 for (const auto& rec : gRecs) { in DEF_TEST() local
/external/flashrom/
Dcbtable.c135 #define for_each_lbrec(head, rec) \ argument
144 struct lb_record *rec; in count_lb_records() local
272 struct lb_mainboard *rec; in find_mainboard() local
290 static struct lb_record *next_record(struct lb_record *rec) in next_record()
295 static void search_lb_records(struct lb_record *rec, struct lb_record *last, unsigned long addr) in search_lb_records()
316 struct lb_record *rec, *last; in cb_parse_table() local
/external/clang/test/Parser/
Dcxx-ambig-paren-expr.cpp36 struct rec { rec(int); }; struct
40 struct rec { rec(int); }; struct
45 struct rec { rec(int); }; struct
/external/skia/modules/sksg/src/
DSkSGMerge.cpp24 for (const auto& rec : fRecs) { in Merge() local
30 for (const auto& rec : fRecs) { in ~Merge() local
92 for (const auto& rec : fRecs) { in onRevalidate() local
/external/coreboot/src/drivers/intel/fsp2_0/
Dfsp_timestamp.c44 static void print_guid_record(const struct generic_event_record *rec) in print_guid_record()
51 static void print_string_record(const struct generic_event_record *rec) in print_string_record()
60 static void print_fsp_perf_timestamp(const struct generic_event_record *rec) in print_fsp_perf_timestamp()
96 const struct generic_event_record *rec = (const struct generic_event_record *)( in fsp_display_timestamp() local

12345678910>>...15