Lines Matching refs:propertyTable
165 propertyTable = entry.fPropertyTable
171 name = LookupKeyInOSDict(propertyTable, kern.globals.gIOClassKey)
357 propertyTable = entry.fPropertyTable
358 print(GetObjectSummary(LookupKeyInPropTable(propertyTable, cmd_args[1])))
736 propertyTable = entry.fPropertyTable
742 print(GetRegDictionary(propertyTable, prefix + " | "))
770 propertyTable = entry.fPropertyTable
778 name = LookupKeyInOSDict(propertyTable, kern.globals.gIOClassKey)
817 propertyTable = entry.fPropertyTable
825 name = LookupKeyInOSDict(propertyTable, kern.globals.gIOClassKey)
1357 def LookupKeyInPropTable(propertyTable, key_str): argument
1362 if not propertyTable:
1364 count = unsigned(propertyTable.count)
1368 if key_str == str(propertyTable.dictionary[idx].key.string):
1369 result = propertyTable.dictionary[idx].value
1575 propertyTable = nub.fPropertyTable
1581 name = LookupKeyInOSDict(propertyTable, kern.globals.gIOClassKey)
1625 propertyTable = nub.fPropertyTable
1631 name = LookupKeyInOSDict(propertyTable, kern.globals.gIOClassKey)
1800 def GetRegionProp(propertyTable, pattern): argument
1805 if not propertyTable:
1808 count = unsigned(propertyTable.count)
1813 res = re.search(pattern, str(propertyTable.dictionary[idx].key.string))