Home
last modified time | relevance | path

Searched refs:p (Results 1 – 25 of 43) sorted by relevance

12

/misc/debug_tools/acrn_crashlog/common/
A Dstrutils.c39 char *p; in get_line() local
59 for (p = match; p >= area; p--) { in get_line()
108 p = found + 1; in strrstr()
110 if (p != s) in strrstr()
120 char *p; in strtrim() local
125 for (p = str; p < str + len && *p == ' '; p++) in strtrim()
134 for (p = str + len - 1; p >= str && *p == ' '; p--) in strtrim()
145 char *p = str; in strcnt() local
152 p = found + 1; in strcnt()
234 const char *p; in exp_end() local
[all …]
A Dcmdutils.c127 char *p; in exec_out2file() local
152 while (start && (p = strchr(start, ' '))) { in exec_out2file()
153 argv[i++] = p + 1; in exec_out2file()
154 *p = 0; in exec_out2file()
155 if (*(p + 1) != '"') in exec_out2file()
156 start = p + 1; in exec_out2file()
158 start = strchr(p + 2, '"'); in exec_out2file()
A Dfsutils.c994 char *p; in dir_recursive() local
999 if (p) in dir_recursive()
1000 *p = '\0'; in dir_recursive()
1208 char *p; in config_fmt_to_files() local
1243 if (!p) { in config_fmt_to_files()
1248 *p = '\0'; in config_fmt_to_files()
1249 file_prefix = p + 1; in config_fmt_to_files()
1251 if (!p) { in config_fmt_to_files()
1257 *p = '\0'; in config_fmt_to_files()
1273 if (!p) { in config_fmt_to_files()
[all …]
/misc/services/acrn_manager/
A Dacrn_vm_ops.c75 char *p = NULL; in _get_vmname_pid() local
78 p = strchr(src, '.'); in _get_vmname_pid()
80 if (!p || p - src == 0 || p - src >= max_len_vmname) in _get_vmname_pid()
89 p = p + strlen(".monitor."); in _get_vmname_pid()
91 val64 = strtol(p, NULL, 10); in _get_vmname_pid()
98 p = strchr(p, '.'); in _get_vmname_pid()
99 if (!p || strncmp(".socket", p, strlen(".socket"))) in _get_vmname_pid()
185 char *p = NULL; in _get_vmname_suffix() local
187 p = strchr(src, '.'); in _get_vmname_suffix()
189 if (!p || p - src == 0) in _get_vmname_suffix()
[all …]
A Dacrn_mngr.c187 size_t p = 0; in server_parse_buf() local
194 msg = client->buf + p; in server_parse_buf()
197 if (p + sizeof(struct mngr_msg) > client->len) { in server_parse_buf()
198 printf("%s: Out of boundary, client len: %d, p: %lu\n", __func__, client->len, p); in server_parse_buf()
212 p += sizeof(struct mngr_msg); in server_parse_buf()
213 } while (p < client->len); in server_parse_buf()
418 char *s_name = NULL, *p = NULL; in connect_to_server() local
428 p = strchr(entry->d_name, '.'); in connect_to_server()
429 if (!p || p == entry->d_name) in connect_to_server()
432 ret = p - entry->d_name; in connect_to_server()
A Dacrnctl.c182 int p, i, len_cmd_out = 0, c_flag = 0; in acrnctl_do_add() local
193 p = 0; in acrnctl_do_add()
195 if (p >= sizeof(args) - 1) { in acrnctl_do_add()
215 p += snprintf(&args[p], sizeof(args) - p, " %s", argv[i]); in acrnctl_do_add()
217 args[p] = ' '; in acrnctl_do_add()
365 strncpy(args + p + 1, "-C", 2); in acrnctl_do_add()
/misc/config_tools/configurator/packages/configurator/src/pages/Config/
A DNewBoard.vue12 <p><b>Are you sure you want to overwrite the board XML file in this working folder?</b></p>
13 <p>If you continue, the board XML file in the following working folder will be overwritten:</p>
14 <p>{{this.$parent.currentSelectedBoard}}</p>
15 …<p>(You may need to change your configuration settings to be compatible with the new board XML fil…
/misc/efi-stub/
A Dstdlib.h79 CHAR16 *p; in strstr_16() local
85 p = haystack; in strstr_16()
86 while (*p) { in strstr_16()
87 if (!StrnCmp(p, needle, len)) { in strstr_16()
88 word = p; in strstr_16()
91 p++; in strstr_16()
A Dboot.c435 uint64_t *p; in construct_mbi2() local
475 p = mbistart; in construct_mbi2()
476 p += (2 * sizeof(uint32_t)) / sizeof(uint64_t); in construct_mbi2()
485 p += ALIGN_UP(tag->size, MULTIBOOT2_TAG_ALIGN) / sizeof(uint64_t); in construct_mbi2()
494 p += ALIGN_UP(tag->size, MULTIBOOT2_TAG_ALIGN) / sizeof(uint64_t); in construct_mbi2()
516 struct multiboot2_tag_mmap *tag = (struct multiboot2_tag_mmap *)p; in construct_mbi2()
537 p += ALIGN_UP(tag->size, MULTIBOOT2_TAG_ALIGN) / sizeof(uint64_t); in construct_mbi2()
546 p += ALIGN_UP(tag->size, MULTIBOOT2_TAG_ALIGN) / sizeof(uint64_t); in construct_mbi2()
555 p += ALIGN_UP(tag->size, MULTIBOOT2_TAG_ALIGN) / sizeof(uint64_t); in construct_mbi2()
566 p += ALIGN_UP(tag->size, MULTIBOOT2_TAG_ALIGN) / sizeof(uint64_t); in construct_mbi2()
[all …]
A Dcontainer.c334 UINT8 * p = NULL; in container_load_modules() local
371 p = (UINT8 *)ctr->mod_hpa; in container_load_modules()
375 memcpy((char *)p, (const char *)lzh->Data, lzh->Size); in container_load_modules()
376 ctr->mod_info[j].mod_start = (EFI_PHYSICAL_ADDRESS)p; in container_load_modules()
377 ctr->mod_info[j].mod_end = (EFI_PHYSICAL_ADDRESS)p + lzh->Size; in container_load_modules()
380 p += ALIGN_UP(lzh->Size, EFI_PAGE_SIZE); in container_load_modules()
/misc/packaging/
A Dacrn-board-inspector.postinst18 …in_cmdline=`sed -n 's/GRUB_CMDLINE_LINUX_DEFAULT*=//'p ${filename} | xargs echo | sed -n 's/ /\n/g…
19 add_cmdline=`echo ${add_cmdline} | sed -n 's/ /\n/g'p`
/misc/config_tools/configurator/packages/vue-json-schema-form/utils/icons/
A DIconPlus.vue8 p-id="10297"
15 p-id="10298"
19 p-id="10299"
/misc/debug_tools/acrn_trace/
A Dacrntrace.c174 struct tm *p; in create_trace_file_dir() local
178 p = localtime(&timep); in create_trace_file_dir()
179 if (p) { in create_trace_file_dir()
182 (1900 + p->tm_year), (1 + p->tm_mon), in create_trace_file_dir()
183 p->tm_mday, p->tm_hour, p->tm_min, p->tm_sec); in create_trace_file_dir()
/misc/config_tools/configurator/packages/configurator/src/pages/Config/Scenario/
A DNewScenario.vue17 <b-form class="p-4">
18 <div class="form-group p-4 bg-gray" style="border:1px solid #D7D7D7;">
21 <p class="d-flex justify-content-between">
28 </p>
45 <p class="mt-3">This system’s board supports a maximum of 8 VMs.</p>
46 <p>
48 </p>
A DSaveScenario.vue11 <p v-html="totalMsg"></p>
/misc/config_tools/configurator/packages/configurator/src/components/common/
A DFooter.vue3 <p class="text-center text-secondary">
6 </p>
/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/
A DTabBox.vue2 <div class="p-2 w-100 d-flex align-items-center TabBox">
3 <div class="d-inline-block p-3 pt-2 Tab position-relative"
16 <div class="d-inline-block p-3 pt-2 Tab position-relative" :class="{Active:activeVMID===pre.id}"
29 <div class="d-inline-block p-3 pt-2 TabAdd" @click="addVM('PRE_LAUNCHED_VM')">
37 …<div class="d-inline-block p-3 pt-2 Tab position-relative" :class="{Active:activeVMID===service.id…
52 … <div class="d-inline-block p-3 pt-2 Tab position-relative" :class="{Active:activeVMID===post.id}"
66 <div class="d-inline-block p-3 pt-2 TabAdd" @click="addVM('POST_LAUNCHED_VM')">
/misc/debug_tools/acrn_crashlog/acrnprobe/
A Dvmrecord.c16 char *p; in vmrecord_last() local
40 p = strchr(vmkey, ' '); in vmrecord_last()
41 if (p) in vmrecord_last()
42 *p = 0; in vmrecord_last()
A Dchannels.c385 char *p; in receive_inotify_events() local
406 for (p = buf; p < buf + read_left + len;) { in receive_inotify_events()
407 if (p + sizeof(struct inotify_event) > in receive_inotify_events()
414 ievent = (struct inotify_event *)p; in receive_inotify_events()
415 if (p + sizeof(struct inotify_event) + ievent->len > in receive_inotify_events()
434 p += sizeof(struct inotify_event) + ievent->len; in receive_inotify_events()
439 read_left = &buf[0] + len + read_left - p; in receive_inotify_events()
440 memmove(buf, p, read_left); in receive_inotify_events()
A Dandroid_events.c54 char *p; in next_vm_event() local
69 p = strchr(type, '/'); in next_vm_event()
70 if (p) { in next_vm_event()
74 tlen = p - type; in next_vm_event()
75 stlen = asprintf(&subtype, " %s", p + 1); in next_vm_event()
/misc/config_tools/configurator/packages/vue-json-schema-form/utils/components/
A DFieldGroupWrap.vue9 <p
14 </p>
/misc/config_tools/scenario_config/
A Dscenario_cfg_gen.py115 for p in path:
116 if '[' in p:
117 idx = int(p.split("[")[1].split("]")[0]) - 1
118 p = p.split("[")[0] + ":id=" + str(idx)
119 path[cnt] = p
/misc/debug_tools/acrn_crashlog/data/
A D80-coredump.conf7 kernel.core_pattern=|/usr/bin/usercrash-wrapper %E %P %u %g %s %t %c %h %e %p %i %I %d
/misc/debug_tools/acrn_log/
A Dacrnlog.c118 char *p = NULL; in hvlog_read_dev() local
147 p = strstr(&msg[0]->raw[msg[0]->len], "][seq="); in hvlog_read_dev()
148 if (p) { in hvlog_read_dev()
149 p = p + strlen("][seq="); in hvlog_read_dev()
150 msg[msg_num]->seq = strtoull(p, NULL, 10); in hvlog_read_dev()
/misc/config_tools/configurator/packages/configurator/src/pages/Welcome/
A DUseExisting.vue5 <p class="py-3 mb-0 mb-sm-4" style="max-width: 462px; letter-spacing: -0.3px;">
7 </p>

Completed in 46 milliseconds

12