| /misc/config_tools/configurator/packages/vue-json-schema-form/utils/i18n/localize/ |
| A D | zh.js | 5 const e = errors[i]; 9 switch (e.keyword) { 36 out += `应当拥有属性${e.params.property}的依赖属性${e.params.deps}`; 43 cond = `${e.params.comparison} ${e.params.limit}`; 48 cond = `${e.params.comparison} ${e.params.limit}`; 65 cond = `${e.params.comparison} ${e.params.limit}`; 70 cond = `${e.params.comparison} ${e.params.limit}`; 78 cond = `${e.params.comparison} ${e.params.limit}`; 98 cond = `${e.params.comparison} ${e.params.limit}`; 144 out = `不应当含有重复项 (第 ${e.params.j} 项与第 ${e.params.i} 项是重复的)`; [all …]
|
| /misc/debug_tools/acrn_crashlog/acrnprobe/ |
| A D | event_handler.c | 35 struct event_t *e; in wdt_timeout() local 58 e->path); in wdt_timeout() 76 free(e); in wdt_timeout() 138 struct event_t *e; in event_handle() local 145 free(e); in event_handle() 152 last_e = malloc(sizeof(*e) + e->len); in event_handle() 158 memcpy(last_e, e, sizeof(*e) + e->len); in event_handle() 165 sender->send(e); in event_handle() 185 if ((e->dir)) in event_handle() 186 free(e->dir); in event_handle() [all …]
|
| A D | sender.c | 292 if (!e->dir) in crashlog_send_crash() 301 generate_crashfile(e->dir, etype_str[e->event_type], in crashlog_send_crash() 316 if (asprintf(&des, "%s/%s", e->dir, e->path) == -1) { in crashlog_send_crash() 343 if (!e->dir) in crashlog_send_info() 415 if (!e->dir) in crashlog_send_vmevent() 453 free(e->dir); in crashlog_send_vmevent() 454 e->dir = NULL; in crashlog_send_vmevent() 576 e->dir = generate_log_dir(mode, key, &e->dlen); in crashlog_new_event() 577 if (!e->dir) { in crashlog_new_event() 639 if (e->dir) in crashlog_send() [all …]
|
| A D | event_queue.c | 41 struct event_t *e; in events_count() local 45 TAILQ_FOREACH(e, &event_q, entries) in events_count() 59 struct event_t *e; in event_dequeue() local 64 e = TAILQ_FIRST(&event_q); in event_dequeue() 65 TAILQ_REMOVE(&event_q, e, entries); in event_dequeue() 66 LOGD("dequeue %d, (%d)%s\n", e->event_type, e->len, e->path); in event_dequeue() 69 return e; in event_dequeue()
|
| A D | channels.c | 80 e = malloc(sizeof(*e) + path_len + 1); in create_event() 81 if (e) { in create_event() 82 memset(e, 0, sizeof(*e) + path_len + 1); in create_event() 95 return e; in create_event() 134 if (e) in channel_oneshot() 144 if (e) in channel_oneshot() 151 if (e) in channel_oneshot() 166 if (e) in channel_oneshot() 199 if (e) { in create_vm_event() 430 if (e) in receive_inotify_events() [all …]
|
| A D | history.c | 110 char *e = strchr(update_line, '\n'); in update_event_count_file() local 117 if (!s || !e) in update_event_count_file() 120 if (str_split_ere(s, e - s, fmt, strlen(fmt), num_str, in update_event_count_file() 134 ne = all_events_new + (e - all_events_cnt); in update_event_count_file() 136 all_events_cnt + all_events_size - e + 1); in update_event_count_file()
|
| /misc/config_tools/configurator/packages/configurator/src-tauri/src/ |
| A D | configurator.rs | 45 fs::write(path, content).map_err(|e| e.to_string()) in write_file() 69 Err(e) => Err(e.to_string()), in deserialize() 130 Err(e) => return Err(e.to_string()), in ensure_config_file() 253 Err(e) => return Err(e.to_string()), in write_board() 361 .map_err(|e| e.to_string())?; in acrn_read() 369 .map_err(|e| e.to_string())?; in acrn_write() 383 fs::create_dir_all(path).map_err(|e| e.to_string()) in acrn_create_dir() 385 fs::create_dir(path).map_err(|e| e.to_string()) in acrn_create_dir() 407 read_dir(path, recursive).map_err(|e| e.to_string()) in acrn_read_dir() 412 fs::remove_dir_all(path).map_err(|e| e.to_string()) in acrn_remove_dir() [all …]
|
| /misc/debug_tools/acrn_trace/scripts/ |
| A D | irq_analyze.py | 84 for e in IRQ_EXITS.keys(): 85 pct = float(IRQ_EXITS[e]) / rt_sec 86 print ("0x%08x\t%-8d\t%-8.2f" % (e, IRQ_EXITS[e], pct)) 87 f_csv.writerow(['0x%08x' % e, IRQ_EXITS[e], '%.2f' % pct])
|
| A D | vmexit_analyze.py | 114 except (IOError, struct.error) as e: 146 except (IOError, struct.error) as e:
|
| /misc/config_tools/configurator/packages/configurator/src/assets/images/ |
| A D | Plus.svg | 3 <rect width="25" height="4" rx="2" transform="matrix(-4.37114e-08 1 1 4.37114e-08 10.5 0.5)" fill="…
|
| /misc/config_tools/scenario_config/ |
| A D | validator.py | 82 e = ValidationError([error.path], error.reason, "critical") 83 e.log() 84 errors.append(e) 97 e = self.format_error(unified_node, parent_map, error) 98 e.log() 99 errors.append(e) 221 nr_error = len(list(filter(lambda e: e["severity"] == "error", obj.get("semantic_errors")))) 222 … nr_warning = len(list(filter(lambda e: e["severity"] == "warning", obj.get("semantic_errors"))))
|
| /misc/config_tools/configurator/pyodide/ |
| A D | validateBoardStructure.py | 42 except Exception as e: 43 return str(e)
|
| A D | validateScenarioStructure.py | 44 except Exception as e: 45 return str(e)
|
| /misc/debug_tools/acrn_crashlog/common/ |
| A D | strutils.c | 254 static int exp2reg(const char *s, const char *e, int *ignore_flag, char **reg) in exp2reg() argument 271 if (oreg_s >= e) { in exp2reg() 276 buf = malloc(e - oreg_s + 1); in exp2reg() 283 memcpy(&buf[1], oreg_s, e - oreg_s - 1); in exp2reg() 284 buf[e - oreg_s] = '\0'; in exp2reg()
|
| /misc/config_tools/static_allocators/ |
| A D | intx.py | 42 except IndexError as e: 43 …ourceError("Cannot allocate legacy irq, the available irq list: {}, {}".format(e, irq_list)) from e 48 except ValueError as e: 49 … ValueError("Cannot remove irq:{} from available irq list:{}, {}". format(irq, e, irq_list)) from e
|
| /misc/packaging/ |
| A D | 50-acrn.network | 2 Name=e* acrn_tap* tap*
|
| /misc/services/acrn_bridge/ |
| A D | acrn.network | 2 Name=e* acrn_tap* tap*
|
| /misc/debug_tools/acrn_crashlog/data/ |
| A D | 80-coredump.conf | 7 kernel.core_pattern=|/usr/bin/usercrash-wrapper %E %P %u %g %s %t %c %h %e %p %i %I %d
|
| A D | usercrash-wrapper | 21 my_order=(%E %P %u %g %s %t %c %h %e %p %i %I %d)
|
| /misc/config_tools/board_inspector/inspectorlib/ |
| A D | unpack.py | 63 except struct.error as e: 64 raise UnpackError("Unpackable.unpack: " + str(e)) 74 except struct.error as e: 75 raise UnpackError("Unpackable.unpack_peek: " + str(e))
|
| /misc/efi-stub/ |
| A D | boot.c | 517 struct multiboot2_mmap_entry *e; in construct_mbi2() local 529 for (i = 0, e = (struct multiboot2_mmap_entry *)tag->entries; i < e820_count; i++) { in construct_mbi2() 530 e->addr = mmap[i].mm_base_addr; in construct_mbi2() 531 e->len = mmap[i].mm_length; in construct_mbi2() 532 e->type = mmap[i].mm_type; in construct_mbi2() 533 e->zero = 0; in construct_mbi2() 534 e = (struct multiboot2_mmap_entry *)((char *)e + sizeof(struct multiboot2_mmap_entry)); in construct_mbi2()
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/utils/schema/ |
| A D | retriev.js | 330 } catch (e) { 331 console.error(`无法合并allOf,丢弃allOf配置继续渲染: \n${e}`);
|
| A D | validate.js | 49 return errors.map((e) => { 52 } = e; 240 } catch (e) {
|
| /misc/config_tools/board_inspector/extractors/ |
| A D | 70-device-classes.py | 25 except Exception as e: 92 except Exception as e:
|
| /misc/config_tools/configurator/packages/vue-json-schema-form/utils/ |
| A D | arrayUtils.js | 34 } catch (e) {
|