Searched refs:find_match (Results 1 – 5 of 5) sorted by relevance
/openbmc/qemu/scripts/codeconverter/codeconverter/ |
H A D | test_patching.py | 78 f1 = f.find_match(Function, 'function1') 79 f2 = f.find_match(Function, 'function2') 80 st1 = f.find_match(Statement, 'statement1') 81 st2 = f.find_match(Statement, 'statement2') 82 st3 = f.find_match(Statement, 'statement3') 83 st4 = f.find_match(Statement, 'statement4') 84 st5 = f.find_match(Statement, 'statement5') 85 st6 = f.find_match(Statement, 'statement6') 86 st7 = f.find_match(Statement, 'statement7')
|
H A D | qom_type_info.py | 251 decl = self.allfiles.find_match(OldStyleObjectDeclareSimpleType, 278 type_info_macro = self.file.find_match(TypeInfoMacro, self.name) 813 fn = self.file.find_match(StaticVoidFunction, self.name) 865 type_init = self.file.find_match(TypeInitMacro, fn.name) 879 var = self.file.find_match(TypeInfoVar, self.name) 907 var = self.file.find_match(TypeInfoVar, self.name) 917 var = self.file.find_match(TypeInfoVar, self.name)
|
H A D | patching.py | 289 def find_match(self, t: Type[T], name: str, group: str='name') -> Optional[T]: member in RegexpScanner 336 def find_match(self, t: Type[T], name: str, group: str='name') -> Optional[T]: member in FileInfo
|
H A D | qom_macros.py | 683 if self.file.find_match(DeclareTypeName, uppercase, 'uppercase'): 714 trivial_struct = self.file.find_match(TrivialClassStruct, self.group('classtype')) 747 decl = files.find_match(DeclareTypeName, name=typename, group='typename')
|
/openbmc/linux/net/ipv6/ |
H A D | route.c | 735 static bool find_match(struct fib6_nh *nh, u32 fib6_flags, in find_match() function 785 return find_match(nh, arg->flags, arg->oif, arg->strict, in rt6_nh_find_match() 833 if (find_match(nh, f6i->fib6_flags, oif, strict, in __find_rr_leaf()
|