| /openbmc/u-boot/scripts/kconfig/ |
| H A D | kxgettext.c | 137 struct file_line *fl = file_line__new(file, lineno); in message__add_file_line() local 139 if (fl == NULL) in message__add_file_line() 142 fl->next = self->files; in message__add_file_line() 143 self->files = fl; in message__add_file_line() 191 struct file_line *fl = self->files; in message__print_file_lineno() local 197 printf("#: %s:%d", fl->file, fl->lineno); in message__print_file_lineno() 198 fl = fl->next; in message__print_file_lineno() 200 while (fl != NULL) { in message__print_file_lineno() 201 printf(", %s:%d", fl->file, fl->lineno); in message__print_file_lineno() 202 fl = fl->next; in message__print_file_lineno()
|
| /openbmc/qemu/hw/ssi/ |
| H A D | aspeed_smc.c | 266 AspeedSMCFlash *fl = &s->flashes[cs]; in aspeed_smc_flash_set_segment_region() local 272 memory_region_set_size(&fl->mmio, seg.size); in aspeed_smc_flash_set_segment_region() 273 memory_region_set_address(&fl->mmio, seg.addr - asc->flash_window_base); in aspeed_smc_flash_set_segment_region() 274 memory_region_set_enabled(&fl->mmio, !!seg.size); in aspeed_smc_flash_set_segment_region() 366 static inline int aspeed_smc_flash_mode(const AspeedSMCFlash *fl) in aspeed_smc_flash_mode() argument 368 const AspeedSMCState *s = fl->controller; in aspeed_smc_flash_mode() 370 return s->regs[s->r_ctrl0 + fl->cs] & CTRL_CMD_MODE_MASK; in aspeed_smc_flash_mode() 373 static inline bool aspeed_smc_is_writable(const AspeedSMCFlash *fl) in aspeed_smc_is_writable() argument 375 const AspeedSMCState *s = fl->controller; in aspeed_smc_is_writable() 377 return s->regs[s->r_conf] & (1 << (s->conf_enable_w0 + fl->cs)); in aspeed_smc_is_writable() [all …]
|
| /openbmc/qemu/bsd-user/freebsd/ |
| H A D | os-stat.h | 569 struct flock fl; in do_freebsd_fcntl() local 581 __get_user(fl.l_type, &target_fl->l_type); in do_freebsd_fcntl() 582 __get_user(fl.l_whence, &target_fl->l_whence); in do_freebsd_fcntl() 583 __get_user(fl.l_start, &target_fl->l_start); in do_freebsd_fcntl() 584 __get_user(fl.l_len, &target_fl->l_len); in do_freebsd_fcntl() 585 __get_user(fl.l_pid, &target_fl->l_pid); in do_freebsd_fcntl() 586 __get_user(fl.l_sysid, &target_fl->l_sysid); in do_freebsd_fcntl() 588 ret = get_errno(safe_fcntl(arg1, host_cmd, &fl)); in do_freebsd_fcntl() 593 __put_user(fl.l_type, &target_fl->l_type); in do_freebsd_fcntl() 594 __put_user(fl.l_whence, &target_fl->l_whence); in do_freebsd_fcntl() [all …]
|
| /openbmc/qemu/include/hw/block/ |
| H A D | flash.h | 24 BlockBackend *pflash_cfi01_get_blk(PFlashCFI01 *fl); 25 MemoryRegion *pflash_cfi01_get_memory(PFlashCFI01 *fl);
|
| /openbmc/qemu/util/ |
| H A D | osdep.c | 200 struct flock fl = { in qemu_probe_lock_ops() local 216 ret = fcntl(fd, F_OFD_GETLK, &fl); in qemu_probe_lock_ops() 245 struct flock fl = { in qemu_lock_fcntl() local 252 ret = RETRY_ON_EINTR(fcntl(fd, fcntl_op_setlk, &fl)); in qemu_lock_fcntl() 269 struct flock fl = { in qemu_lock_fd_test() local 276 ret = fcntl(fd, fcntl_op_getlk, &fl); in qemu_lock_fd_test() 280 return fl.l_type == F_UNLCK ? 0 : -EAGAIN; in qemu_lock_fd_test()
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-bdrv-graph-mod.c | 431 BlockDriverState *fl = exclusive_writer_node("fl1"); in test_append_greedy_filter() local 439 bdrv_append(fl, base, &error_abort); in test_append_greedy_filter() 440 bdrv_unref(fl); in test_append_greedy_filter()
|
| /openbmc/qemu/hw/block/ |
| H A D | pflash_cfi01.c | 990 BlockBackend *pflash_cfi01_get_blk(PFlashCFI01 *fl) in pflash_cfi01_get_blk() argument 992 return fl->blk; in pflash_cfi01_get_blk() 995 MemoryRegion *pflash_cfi01_get_memory(PFlashCFI01 *fl) in pflash_cfi01_get_memory() argument 997 return &fl->mem; in pflash_cfi01_get_memory() 1006 void pflash_cfi01_legacy_drive(PFlashCFI01 *fl, DriveInfo *dinfo) in pflash_cfi01_legacy_drive() argument 1016 if (fl->blk) { in pflash_cfi01_legacy_drive() 1020 qdev_prop_set_drive_err(DEVICE(fl), "drive", blk_by_legacy_dinfo(dinfo), in pflash_cfi01_legacy_drive()
|
| /openbmc/openbmc/poky/meta/recipes-devtools/cmake/ |
| H A D | cmake.inc | 20 file://0001-CMakeDetermineCompilerABI-Strip-pipe-from-compile-fl.patch \
|
| /openbmc/openbmc/poky/bitbake/lib/bb/ |
| H A D | main.py | 365 fl = fcntl.fcntl(sys.stdout.fileno(), fcntl.F_GETFL) 366 fl |= os.O_SYNC 367 fcntl.fcntl(sys.stdout.fileno(), fcntl.F_SETFL, fl)
|
| H A D | cache.py | 612 for _, fl in info_array[0].file_checksums.items(): 613 fl = fl.strip() 614 if not fl: 617 flist = self.filelist_regex.split(fl)
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/snort/snort/ |
| H A D | disable-run-test-program-while-cross-compiling.patch | 243 - DAQ_ModFlow_t fl; 244 - fl.type = DAQ_MODFLOW_TYPE_VER_REASON;
|
| /openbmc/qemu/include/accel/tcg/ |
| H A D | cpu-ops.h | 287 MemTxAttrs atr, int fl, uintptr_t ra) in cpu_check_watchpoint() argument
|
| /openbmc/phosphor-power/phosphor-power-supply/ |
| H A D | new_power_supply.cpp | 1014 std::string fl = "E"; in updateInventory() local 1015 fl.push_back(inventoryPath.back()); in updateInventory() 1016 fl.resize(FL_KW_SIZE, ' '); in updateInventory() 1018 std::vector<uint8_t>(fl.begin(), fl.end())); in updateInventory()
|
| H A D | power_supply.cpp | 999 std::string fl = "E"; in updateInventory() local 1000 fl.push_back(inventoryPath.back()); in updateInventory() 1001 fl.resize(FL_KW_SIZE, ' '); in updateInventory() 1003 std::vector<uint8_t>(fl.begin(), fl.end())); in updateInventory()
|
| /openbmc/qemu/linux-user/ |
| H A D | syscall.c | 6900 static inline abi_long copy_from_user_flock(struct flock *fl, in copy_from_user_flock() argument 6915 fl->l_type = l_type; in copy_from_user_flock() 6916 __get_user(fl->l_whence, &target_fl->l_whence); in copy_from_user_flock() 6917 __get_user(fl->l_start, &target_fl->l_start); in copy_from_user_flock() 6918 __get_user(fl->l_len, &target_fl->l_len); in copy_from_user_flock() 6919 __get_user(fl->l_pid, &target_fl->l_pid); in copy_from_user_flock() 6925 const struct flock *fl) in copy_to_user_flock() argument 6934 l_type = host_to_target_flock(fl->l_type); in copy_to_user_flock() 6936 __put_user(fl->l_whence, &target_fl->l_whence); in copy_to_user_flock() 6937 __put_user(fl->l_start, &target_fl->l_start); in copy_to_user_flock() [all …]
|
| /openbmc/qemu/block/ |
| H A D | qapi.c | 559 TimedAverage *fl = &ts->latency[BLOCK_ACCT_FLUSH]; in bdrv_query_blk_stats() local 575 dev_stats->min_flush_latency_ns = timed_average_min(fl); in bdrv_query_blk_stats() 576 dev_stats->max_flush_latency_ns = timed_average_max(fl); in bdrv_query_blk_stats() 577 dev_stats->avg_flush_latency_ns = timed_average_avg(fl); in bdrv_query_blk_stats()
|
| /openbmc/openbmc/poky/bitbake/bin/ |
| H A D | bitbake-worker | 53 fl = fcntl.fcntl(sys.stdout.fileno(), fcntl.F_GETFL) variable 54 fl |= os.O_SYNC 55 fcntl.fcntl(sys.stdout.fileno(), fcntl.F_SETFL, fl)
|
| /openbmc/openbmc/poky/meta/classes-global/ |
| H A D | staging.bbclass | 469 fl = depdir + "/" + l 470 if not os.path.exists(fl): 491 fl = depdir + "/" + l 493 lnk = os.readlink(fl) 495 os.unlink(fl) 496 os.unlink(fl + ".complete")
|
| /openbmc/qemu/target/xtensa/ |
| H A D | overlay_tool.h | 28 #define XTREG(idx, ofs, bi, sz, al, no, fl, cp, typ, grp, name, \ argument 31 .flags = (fl), \
|
| /openbmc/qemu/hw/mips/ |
| H A D | malta.c | 1082 PFlashCFI01 *fl; in mips_malta_init() local 1139 fl = pflash_cfi01_register(FLASH_ADDRESS, "mips_malta.bios", in mips_malta_init() 1145 bios = pflash_cfi01_get_memory(fl); in mips_malta_init()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/figlet/figlet/ |
| H A D | 0001-build-add-autotools-support-to-allow-easy-cross-comp.patch | 118 - cp fonts/*.fl[fc] $(DIST)/fonts
|
| /openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
| H A D | qemurunner.py | 38 fl = fcntl.fcntl(o, fcntl.F_GETFL) 39 fcntl.fcntl(o, fcntl.F_SETFL, fl | os.O_NONBLOCK)
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/trace-cmd/files/ |
| H A D | 0001-Replace-LFS64-interfaces-off64_t-and-lseek64.patch | 1054 unsigned short fl, id; 1063 if ((fl & TRACECMD_SEC_FL_COMPRESS)) { 1099 id, soffset, desc, fl, size);
|
| /openbmc/ |
| D | opengrok1.0.log | [all...] |
| D | opengrok2.0.log | [all...] |