| /misc/debug_tools/acrn_crashlog/acrnprobe/ |
| A D | Makefile | 26 $(BUILDDIR)/common/obj/log_sys.o \ 27 $(BUILDDIR)/common/obj/cmdutils.o \ 28 $(BUILDDIR)/common/obj/fsutils.o \ 29 $(BUILDDIR)/common/obj/strutils.o \ 30 $(BUILDDIR)/acrnprobe/obj/load_conf.o \ 31 $(BUILDDIR)/acrnprobe/obj/channels.o \ 35 $(BUILDDIR)/acrnprobe/obj/sender.o \ 37 $(BUILDDIR)/acrnprobe/obj/property.o \ 39 $(BUILDDIR)/acrnprobe/obj/history.o \ 41 $(BUILDDIR)/acrnprobe/obj/loop.o \ [all …]
|
| /misc/config_tools/configurator/pyodide/ |
| A D | loadScenario.py | 26 def object_mapper(obj): argument 27 if not isinstance(obj, dict): 28 return obj 29 for key, value in obj.items(): 36 return obj 56 def correct_struct(obj): argument 58 return obj 66 obj[key] = [int(x) for x in obj[key]] 70 obj[key] = [value] 72 del obj[key] [all …]
|
| A D | validateScenario.py | 43 obj = PipelineObject( 49 pipeline.run(obj) 51 syntactic_errors = obj.get("syntactic_errors") 52 semantic_errors = obj.get("semantic_errors")
|
| A D | loadBoard.py | 53 def dynamic_enum_apply(obj): argument 55 if 'enum' in obj and isinstance(obj['enum'], dict): 56 enum_setting = obj['enum'] 59 enum_setting['type'] = obj.get('type', '') 62 obj['enum'] = enum 63 obj['enumNames'] = enum_names 64 return obj
|
| A D | populateDefaultValues.py | 35 obj = PipelineObject( 39 pipeline.run(obj) 42 etree = obj.get("scenario_etree").getroot() 53 result = tostring(obj.get("scenario_etree").getroot())
|
| A D | validateBoardStructure.py | 33 obj = PipelineObject( 38 pipeline.run(obj) 40 validate_result = obj.get("syntactic_errors")
|
| A D | validateScenarioStructure.py | 35 obj = PipelineObject( 40 pipeline.run(obj) 42 validate_result = obj.get("syntactic_errors")
|
| /misc/debug_tools/acrn_crashlog/usercrash/ |
| A D | Makefile | 16 $(BUILDDIR)/usercrash/obj/server.o \ 17 $(BUILDDIR)/common/obj/log_sys.o 21 $(BUILDDIR)/usercrash/obj/client.o \ 23 $(BUILDDIR)/common/obj/log_sys.o \ 24 $(BUILDDIR)/common/obj/cmdutils.o \ 25 $(BUILDDIR)/common/obj/fsutils.o \ 26 $(BUILDDIR)/common/obj/strutils.o 31 $(BUILDDIR)/common/obj/log_sys.o \ 32 $(BUILDDIR)/common/obj/cmdutils.o \ 33 $(BUILDDIR)/common/obj/fsutils.o \ [all …]
|
| /misc/debug_tools/acrn_crashlog/common/ |
| A D | Makefile | 8 @if [ ! -d $(BUILDDIR)/common/obj ]; then \ 9 mkdir -p $(BUILDDIR)/common/obj/; \ 13 $(CC) -c $(CFLAGS) $(INCLUDE) $< -o $(BUILDDIR)/common/obj/$@ 18 @if [ -d $(BUILDDIR)/common/obj ]; then \ 19 find $(BUILDDIR)/common/obj -name "*.o" -exec $(RM) {} \; 2>&1 || exit 0; \ 21 @if [ -d $(BUILDDIR)/common/obj ]; then \ 22 $(RM) -r $(BUILDDIR)/common/obj ; \
|
| /misc/config_tools/scenario_config/ |
| A D | validator.py | 127 elem = error.obj 181 def run(self, obj): argument 182 validator = ScenarioValidator(obj.get("schema_etree"), obj.get("datachecks_etree")) 183 obj.set("validator", validator) 189 def run(self, obj): argument 190 validator = ScenarioValidator(obj.get("schema_path"), obj.get("datachecks_path")) 200 def run(self, obj): argument 201 errors = obj.get("validator").check_syntax(obj.get(self.etree_tag)) 208 def run(self, obj): argument 209 … errors = obj.get("validator").check_semantics(obj.get("board_etree"), obj.get("scenario_etree")) [all …]
|
| A D | default_populator.py | 70 def run(self, obj): argument 71 populator = DefaultValuePopulator(obj.get("schema_etree")) 72 etree = obj.get("scenario_etree") 74 obj.set("scenario_etree", etree) 88 obj = PipelineObject(schema_path = args.schema, scenario_path = args.scenario) 89 pipeline.run(obj) 90 obj.get("scenario_etree").write(args.out)
|
| A D | xml_loader.py | 16 def run(self, obj): argument 17 xml_path = obj.get(self.consumes) 19 obj.set(self.provides, etree)
|
| A D | lxml_loader.py | 17 def run(self, obj): argument 18 xml_path = obj.get(self.consumes) 21 obj.set(self.provides, etree)
|
| A D | pipeline.py | 37 def run(self, obj): argument 62 def run(self, obj): argument 64 if not obj.has(tag): 68 stage.run(obj) 72 obj.consume(tag)
|
| A D | schema_slicer.py | 151 def run(self, obj): argument 152 schema_etree = obj.get("schema_etree") 176 obj.set("schema_etree", schema_etree) 204 def run(self, obj): argument 205 schema_etree = obj.get("schema_etree") 221 obj.set("schema_etree", schema_etree) 233 obj = PipelineObject(schema_path = args.schema) 234 pipeline.run(obj) 235 obj.get("schema_etree").write(args.out)
|
| A D | elementpath_overlay.py | 132 def __init__(self, obj): argument 133 self.obj = obj 136 return id(self.obj)
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/utils/ |
| A D | vueUtils.js | 26 export function getPathVal(obj, path, leftDeviation = 0) { argument 31 if (obj === undefined) return undefined; 32 obj = pathArr[i] === '' ? obj : obj[pathArr[i]]; 34 return obj;
|
| A D | vue3Utils.js | 20 export function setPathVal(obj, path, value) { argument 25 obj[pathArr[pathArr.length - 1]] = value; 28 obj = obj[pathArr[i]];
|
| A D | utils.js | 220 export function isEmptyObject(obj) { argument 221 if (!obj) return true; 223 for (const key in obj) { 224 if (Object.prototype.hasOwnProperty.call(obj, key)) { 232 export function filterObject(obj, filterFn) { argument 233 return Object.entries(obj).reduce((preVal, [key, value]) => {
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/utils/schema/ |
| A D | findSchemaDefinition.js | 2 function getPathVal(obj, pathStr) { argument 5 if (obj === undefined) return undefined; 6 obj = pathArr[i] === '' ? obj : obj[pathArr[i]]; 8 return obj;
|
| /misc/config_tools/board_inspector/acpiparser/aml/ |
| A D | interpreter.py | 51 def set(self, obj): argument 133 if not obj: 142 return obj 237 if not obj: 241 return obj 277 return obj 377 obj = obj.get_obj() 495 obj.set(Integer(obj.get() - 1)) 524 obj.set(Integer(obj.get() + 1)) 630 obj = obj.get_obj() [all …]
|
| A D | datatypes.py | 17 def set(self, obj): argument 220 def set(self, obj): argument 221 self.__buf.write_field(self.__field, obj.get()) 262 def set(self, obj): argument 263 self.__value = obj.get() 298 def __init__(self, obj, index=None): argument 299 self.__obj = obj 315 def set(self, obj, index=None): argument 316 self.__obj = obj 444 def set(self, obj): argument [all …]
|
| /misc/config_tools/scenario_config/jsonschema/ |
| A D | converter.py | 183 if 'xs:restriction' in obj: 187 js_st['title'] = obj['@name'] 214 if 'xs:annotation' in obj: 220 elif 'xs:union' in obj: 228 print(obj) 278 def xse2jse(self, obj) -> OrderedDict: argument 284 all_elements = self.get_elements(obj) 394 def get_elements(obj): argument 397 if 'xs:element' in obj: 398 elements = obj['xs:element'] [all …]
|
| /misc/config_tools/board_inspector/inspectorlib/ |
| A D | mmio.py | 14 obj = dev.get("object") 15 ret.append((obj, int(base, base=16), int(top, base=16)))
|
| /misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/ |
| A D | VUART.vue | 262 selectChange(index, value, obj, endpoint) { 265 obj.vbdf = "" 266 obj.io_port = "" 270 obj.vbdf = "" 271 obj.io_port = ""
|