/xen/xen/tools/kconfig/ |
A D | expr.h | 206 #define for_all_properties(sym, st, tok) \ argument 207 for (st = sym->prop; st; st = st->next) \ 208 if (st->type == (tok)) 209 #define for_all_defaults(sym, st) for_all_properties(sym, st, P_DEFAULT) argument 210 #define for_all_choices(sym, st) for_all_properties(sym, st, P_CHOICE) argument 211 #define for_all_prompts(sym, st) \ argument 212 for (st = sym->prop; st; st = st->next) \ 213 if (st->text)
|
A D | confdata.c | 24 struct stat st; in is_present() local 26 return !stat(path, &st); in is_present() 32 struct stat st; in is_dir() local 34 if (stat(path, &st)) in is_dir() 37 return S_ISDIR(st.st_mode); in is_dir()
|
/xen/stubdom/ |
A D | newlib.patch | 290 +#define st0 %st 291 +#define st1 %st(1) 292 +#define st2 %st(2) 293 +#define st3 %st(3) 294 +#define st4 %st(4) 295 +#define st5 %st(5) 296 +#define st6 %st(6) 297 +#define st7 %st(7) 444 +#define st0 %st 445 +#define st1 %st(1) [all …]
|
/xen/docs/ |
A D | parse-support-md | 467 my $st = $sectnode->{Status}[$i]; 473 if ($sectnode->{RealSectNode}{HasCaveat}[$i] && $st 487 $st //= '-'; 494 if (ref $st) { 495 $st = pandoc2html_inline $st; 497 $st = escapeHTML($st); 499 o($st);
|
/xen/xen/include/asm-arm/ |
A D | grant_table.h | 74 #define gnttab_set_frame_gfn(gt, st, idx, gfn) \ argument 76 ((st) ? (gt)->arch.status_gfn : (gt)->arch.shared_gfn)[idx] = \ 80 #define gnttab_get_frame_gfn(gt, st, idx) ({ \ argument 81 (st) ? gnttab_status_gfn(NULL, gt, idx) \
|
A D | system.h | 22 #define wmb() dsb(st)
|
A D | mm.h | 121 #define page_state_is(pg, st) (((pg)->count_info&PGC_state) == PGC_state_##st) argument
|
/xen/tools/misc/ |
A D | xen-ucode.c | 20 struct stat st; in main() local 40 if ( fstat(fd, &st) != 0 ) in main() 47 len = st.st_size; in main()
|
/xen/xen/common/sched/ |
A D | credit2.c | 2704 st.lrqd = c2rqd(cpu); in balance_load() 2713 st.load_delta = 0; in balance_load() 2719 st.orqd = rqd; in balance_load() 2721 if ( st.orqd == st.lrqd in balance_load() 2727 delta = st.lrqd->b_avgload - st.orqd->b_avgload; in balance_load() 2754 cpus_max = max(st.lrqd->nr_cpus, st.orqd->nr_cpus); in balance_load() 2790 st.orqd = max_delta_rqd; in balance_load() 2859 if ( st.best_push_svc ) in balance_load() 2860 migrate(ops, st.best_push_svc, st.orqd, now); in balance_load() 2861 if ( st.best_pull_svc ) in balance_load() [all …]
|
/xen/xen/include/asm-x86/ |
A D | grant_table.h | 40 #define gnttab_set_frame_gfn(gt, st, idx, gfn) do {} while ( 0 ) argument 41 #define gnttab_get_frame_gfn(gt, st, idx) ({ \ argument 42 mfn_t mfn_ = (st) ? gnttab_status_mfn(gt, idx) \
|
A D | mm.h | 79 #define page_state_is(pg, st) (((pg)->count_info&PGC_state) == PGC_state_##st) argument
|
/xen/tools/xcutils/ |
A D | readnotes.c | 180 struct stat st; in main() local 203 if (fstat(fd, &st) == -1) in main() 210 image = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0); in main() 233 if ( payload_offset >= st.st_size ) in main() 238 if ( (payload_offset + payload_length) > st.st_size ) in main() 247 size = st.st_size; in main()
|
/xen/xen/xsm/flask/ |
A D | flask_op.c | 433 struct avc_cache_stats *st; in flask_security_avc_cachestats() local 440 st = &per_cpu(avc_cache_stats, arg->cpu); in flask_security_avc_cachestats() 442 arg->lookups = st->lookups; in flask_security_avc_cachestats() 443 arg->hits = st->hits; in flask_security_avc_cachestats() 444 arg->misses = st->misses; in flask_security_avc_cachestats() 445 arg->allocations = st->allocations; in flask_security_avc_cachestats() 446 arg->reclaims = st->reclaims; in flask_security_avc_cachestats() 447 arg->frees = st->frees; in flask_security_avc_cachestats()
|
/xen/xen/drivers/char/ |
A D | meson-uart.c | 67 uint32_t st = readl(uart->regs + AML_UART_STATUS_REG); in meson_uart_interrupt() local 69 if ( !(st & AML_UART_RX_FIFO_EMPTY) ) in meson_uart_interrupt() 72 if ( !(st & AML_UART_TX_FIFO_FULL) ) in meson_uart_interrupt()
|
A D | mvebu-uart.c | 73 uint32_t st = mvebu3700_read(uart, UART_STATUS_REG); in mvebu3700_uart_interrupt() local 75 if ( st & (STATUS_RX_RDY | STATUS_OVR_ERR | STATUS_FRM_ERR | in mvebu3700_uart_interrupt() 79 if ( st & STATUS_TX_RDY ) in mvebu3700_uart_interrupt()
|
/xen/tools/xenstore/ |
A D | tdb.c | 315 struct stat st; in tdb_oob() local 328 if (fstat(tdb->fd, &st) == -1) in tdb_oob() 331 if (st.st_size < (off_t)len) { in tdb_oob() 336 (int)len, (int)st.st_size)); in tdb_oob() 344 tdb->map_size = st.st_size; in tdb_oob() 1540 struct stat st; local 1635 if (tdb_already_open(st.st_dev, st.st_ino)) { 1638 name, (int)st.st_dev, (int)st.st_ino)); 1648 tdb->map_size = st.st_size; 1649 tdb->device = st.st_dev; [all …]
|
/xen/tools/libxl/ |
A D | libxl_stream_write.c | 444 struct stat st; in write_emulator_context_record() local 464 if (fstat(readfd, &st)) { in write_emulator_context_record() 470 if (!S_ISREG(st.st_mode)) { in write_emulator_context_record() 477 rec->length = st.st_size + sizeof(stream->emu_sub_hdr); in write_emulator_context_record() 478 stream->emu_body = libxl__malloc(NOGC, st.st_size); in write_emulator_context_record() 488 dc->bytes_to_read = st.st_size; in write_emulator_context_record()
|
A D | libxl_exec.c | 115 int st = WEXITSTATUS(status); in libxl_report_child_exitstatus() local 116 if (st) in libxl_report_child_exitstatus() 118 " with error status %d", what, (unsigned long)pid, st); in libxl_report_child_exitstatus()
|
A D | libxl_usb.c | 29 struct stat st; in usbback_is_loaded() local 31 r = lstat(SYSFS_USBBACK_DRIVER, &st); in usbback_is_loaded() 1405 struct stat st; in bind_usbintf() local 1415 r = lstat(intf_path, &st); in bind_usbintf() 1447 struct stat st; in usbintf_is_assigned() local 1450 r = lstat(spath, &st); in usbintf_is_assigned()
|
A D | libxl_pci.c | 466 struct stat st; in sysfs_dev_unbind() local 473 if ( !lstat(spath, &st) ) { in sysfs_dev_unbind() 656 struct stat st; in pciback_dev_is_assigned() local 670 rc = lstat(spath, &st); in pciback_dev_is_assigned() 773 struct stat st; in libxl__device_pci_assignable_add() local 783 if ( lstat(spath, &st) ) { in libxl__device_pci_assignable_add() 938 struct stat st; in pci_multifunction_check() local 951 if ( lstat(path, &st) ) { in pci_multifunction_check()
|
A D | libxl_bootloader.c | 434 struct stat st; in bootloader_disk_attached_cb() local 442 if ( lstat(bltmp, &st) ) in bootloader_disk_attached_cb()
|
/xen/xen/common/ |
A D | page_alloc.c | 1239 struct scrub_wait_state *st = data; in scrub_continue() local 1241 if ( st->drop ) in scrub_continue() 1244 if ( st->pg->u.free.scrub_state == BUDDY_SCRUB_ABORT ) in scrub_continue() 1247 st->drop = true; in scrub_continue() 1248 st->pg->u.free.first_dirty = st->first_dirty; in scrub_continue() 1250 st->pg->u.free.scrub_state = BUDDY_NOT_SCRUBBING; in scrub_continue() 1277 struct scrub_wait_state st; in scrub_free_pages() local 1336 st.pg = pg; in scrub_free_pages() 1343 st.first_dirty = (i >= (1U << order) - 1) ? in scrub_free_pages() 1345 st.drop = false; in scrub_free_pages() [all …]
|
/xen/tools/hotplug/Linux/ |
A D | block-iscsi | 114 iscsiadm -m discovery -t st -p $portal 2>&1 | grep -q "$iqn" || \
|
/xen/xen/crypto/ |
A D | rijndael.c | 722 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st… argument
|
/xen/tools/pygrub/src/ |
A D | pygrub | 38 st = os.fstat(fd) 39 if (not stat.S_ISCHR(st.st_mode)):
|