| /OK3568_Linux_fs/kernel/fs/orangefs/ |
| H A D | orangefs-utils.c | 30 fsid = op->upcall.req.getattr.refn.fs_id; in fsid_of_op() 264 new_op->upcall.req.getattr.refn = orangefs_inode->refn; in orangefs_inode_getattr() 270 new_op->upcall.req.getattr.mask = ORANGEFS_ATTR_SYS_ALL_NOHINT; in orangefs_inode_getattr() 272 new_op->upcall.req.getattr.mask = in orangefs_inode_getattr() 302 &new_op->downcall.resp.getattr.attributes, in orangefs_inode_getattr() 303 new_op->downcall.resp.getattr.link_target); in orangefs_inode_getattr() 311 downcall.resp.getattr.attributes.objtype); in orangefs_inode_getattr() 315 downcall.resp.getattr.attributes); in orangefs_inode_getattr() 318 downcall.resp.getattr.attributes.size; in orangefs_inode_getattr() 320 inode->i_blkbits = ffs(new_op->downcall.resp.getattr. in orangefs_inode_getattr() [all …]
|
| H A D | symlink.c | 15 .getattr = orangefs_getattr,
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/layerindexlib/tests/ |
| H A D | restapi.py | 59 for id in getattr(self.layerindex.indexes[0], type): 62 … self.assertTrue(id in getattr(reload.indexes[0], type), msg="Id number not in reloaded index") 64 …self.logger.debug("%s ? %s" % (getattr(self.layerindex.indexes[0], type)[id], getattr(reload.index… 66 …self.assertEqual(getattr(self.layerindex.indexes[0], type)[id], getattr(reload.indexes[0], type)[i… 82 for id in getattr(self.layerindex.indexes[0] ,type): 85 …self.assertTrue(id in getattr(reload.indexes[0], type), msg="Id number missing from reloaded data") 87 …self.logger.debug("%s ? %s" % (getattr(self.layerindex.indexes[0] ,type)[id], getattr(reload.index… 89 …self.assertEqual(getattr(self.layerindex.indexes[0] ,type)[id], getattr(reload.indexes[0], type)[i…
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/ |
| H A D | decorators.py | 138 cls = getattr(inspect.getmodule(meth), 148 testMethod = getattr(self, self._testMethodName) 258 return getattr(obj, key, default) 259 tc_method = getattr(obj, obj._testMethodName) 260 ret = getattr(tc_method, key, getattr(obj, key, default)) 265 r = {k[len(__tag_prefix):]:getattr(o,k) for k in dir(o) if k.startswith(__tag_prefix)} 269 tc_method = getattr(obj, obj._testMethodName)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/ |
| H A D | loader.py | 119 method = getattr(case, case._testMethodName, None) 167 for t in getattr(case, "__oeqa_testtags"): 171 method = getattr(case, test_name) 173 for t in getattr(method, "__oeqa_testtags"): 188 getattr(testCaseClass, 'setUpClass')) 190 getattr(testCaseClass, 'tearDownClass')) 201 getattr(testCaseClass, 'setUp')) 203 getattr(testCaseClass, 'tearDown'))
|
| H A D | runner.py | 74 for (scase, msg) in getattr(self, t): 100 for resultclass in getattr(self, rtype): 202 alltags.extend(getattr(case, "__oeqa_testtags")) 206 method = getattr(case, test_name) 208 alltags.extend(getattr(method, "__oeqa_testtags")) 264 oetags = getattr(case, '__oeqa_testtags')
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-requests-toolbelt/ |
| H A D | 0001-Fix-collections.abc-deprecation-warning-in-downloadu.patch | 10 if path and isinstance(getattr(path, 'write', None), collections.Callable): 34 - if path and isinstance(getattr(path, 'write', None), collections.Callable): 35 + if path and callable(getattr(path, 'write', None)): 38 filename = getattr(fd, 'name', None)
|
| /OK3568_Linux_fs/kernel/fs/ext4/ |
| H A D | symlink.c | 67 .getattr = ext4_encrypted_symlink_getattr, 74 .getattr = ext4_getattr, 81 .getattr = ext4_getattr,
|
| /OK3568_Linux_fs/kernel/fs/ext2/ |
| H A D | symlink.c | 26 .getattr = ext2_getattr, 33 .getattr = ext2_getattr,
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/ |
| H A D | oetest.py | 284 method = getattr(test, '_testMethodName', None) 290 tests = getattr(test, '_tests', []) 301 suites = filterByTagExp(suites, getattr(self, "tagexp", None)) 310 methodname = getattr(test, '_testMethodName', None) 312 method = getattr(test, methodname) 313 depends_on = getattr(method, '_depends_on', None) 316 … if depends_on in [getattr(t, '_testMethodName', None) for t in self.getTests(dep_suite)]:
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | command.py | 82 command_method = getattr(self.cmds_sync, command) 84 … if not hasattr(command_method, 'readonly') or not getattr(command_method, 'readonly'): 88 if getattr(command_method, 'needconfig', True): 120 commandmethod = getattr(CommandsAsync, command) 121 needcache = getattr( commandmethod, "needcache" ) 495 ret = getattr(d, method)(*args, **kwargs) 510 return getattr(d, method)(*args, **kwargs) 530 return getattr(d, method)(*args, **kwargs)
|
| H A D | main.py | 84 module_if = getattr(module, modulename) 85 if getattr(module_if, 'hidden_extension', False): 97 return getattr(module, modulename) 400 featureset = getattr(ui_module, "featureSet", [])
|
| H A D | COW.py | 67 value = getattr(cls, nkey) 91 value = getattr(cls, key)
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/ |
| H A D | argparse_oe.py | 80 name = getattr(args, action.dest) 148 group = getattr(parser, '_group', None) 152 order = getattr(parser, '_order', 0)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/gdb/python/gdb/ |
| H A D | frames.py | 43 return getattr(filter_item, "priority", 0) 76 return getattr(filter_item, "enabled", False)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/gdb/python/gdb/ |
| H A D | frames.py | 43 return getattr(filter_item, "priority", 0) 76 return getattr(filter_item, "enabled", False)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/layerindexlib/ |
| H A D | restapi.py | 297 for obj in getattr(index, objects, None): 299 if getattr(index, objects)[obj].layerbranch_id == layerbranchid: 300 filtered.append(getattr(index, objects)[obj]._data) 305 filtered.append(getattr(index, objects)[obj]._data)
|
| /OK3568_Linux_fs/buildroot/package/python-setuptools/ |
| H A D | 0001-add-executable.patch | 64 exec_param = getattr(bs_cmd, 'executable', None) 69 is_wininst = getattr(bw_cmd, '_is_running', False)
|
| /OK3568_Linux_fs/kernel/scripts/kconfig/tests/ |
| H A D | conftest.py | 232 lambda s, e: getattr(s, attr).find(e) >= 0, 236 return self._read_and_compare(lambda s, e: getattr(s, attr) == e,
|
| /OK3568_Linux_fs/kernel/fs/afs/ |
| H A D | mntpt.c | 34 .getattr = afs_getattr, 38 .getattr = afs_getattr,
|
| /OK3568_Linux_fs/yocto/poky/bitbake/bin/ |
| H A D | bitbake-hashclient | 144 level = getattr(logging, args.log.upper(), None) 153 func = getattr(args, 'func', None)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/templatetags/ |
| H A D | field_values_filter.py | 18 objects.append(getattr(item, field))
|
| /OK3568_Linux_fs/kernel/fs/erofs/ |
| H A D | inode.c | 365 .getattr = erofs_getattr, 372 .getattr = erofs_getattr, 379 .getattr = erofs_getattr,
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/ply/ |
| H A D | yacc.py | 213 return getattr(self.slice[n],"lineno",0) 219 startline = getattr(self.slice[n],"lineno",0) 220 endline = getattr(self.slice[n],"endlineno",startline) 224 return getattr(self.slice[n],"lexpos",0) 227 startpos = getattr(self.slice[n],"lexpos",0) 228 endpos = getattr(self.slice[n],"endlexpos",startpos) 407 sym.endlineno = getattr(t1,"endlineno",t1.lineno) 408 sym.endlexpos = getattr(t1,"endlexpos",t1.lexpos) 484 result = getattr(n,"value",None) 696 sym.endlineno = getattr(t1,"endlineno",t1.lineno) [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/prserv/ |
| H A D | __init__.py | 13 numeric_level = getattr(logging, loglevel.upper(), None)
|