| /linux/tools/perf/scripts/python/ |
| H A D | event_analyzing_sample.py | 48 con.execute(""" 55 con.execute(""" 97 con.execute("insert into gen_events values(?, ?, ?, ?)", 102 con.execute("insert into pebs_ll values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", 126 count = con.execute("select count(*) from gen_events") 135 …commq = con.execute("select comm, count(comm) from gen_events group by comm order by -count(comm)") 142 …symbolq = con.execute("select symbol, count(symbol) from gen_events group by symbol order by -coun… 148 … dsoq = con.execute("select dso, count(dso) from gen_events group by dso order by -count(dso)") 159 count = con.execute("select count(*) from pebs_ll") 168 … commq = con.execute("select comm, count(comm) from pebs_ll group by comm order by -count(comm)") [all …]
|
| /linux/scripts/gdb/linux/ |
| H A D | utils.py | 105 endian = gdb.execute("show endian", to_string=True) 180 target_arch = gdb.execute("show architecture", to_string=True) 197 return gdb.execute("monitor info version", to_string=True) != "" 203 thread_info = gdb.execute("info thread 1", to_string=True) 267 show_pagination = gdb.execute("show pagination", to_string=True) 269 gdb.execute("set pagination off") 273 gdb.execute("set pagination %s" % ("on" if pagination else "off"))
|
| H A D | symbols.py | 66 gdb.execute("symbol-file {0} -o {1}".format( 106 gdb.execute("tbreak *" + hex(jump_to_kernel)) 107 gdb.execute("continue") 109 gdb.execute("stepi") 205 gdb.execute(cmdline, to_string=True) 230 gdb.execute(cmdline, to_string=True) 246 gdb.execute(cmdline, to_string=True) 268 gdb.execute("symbol-file", to_string=True) 274 gdb.execute("symbol-file {0}{1}".format(orig_vmlinux, offset_arg))
|
| /linux/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/ |
| H A D | init.h | 15 u8 execute; member 29 .execute = 1, \ 36 int nvbios_post(struct nvkm_subdev *, bool execute);
|
| /linux/drivers/nvme/target/ |
| H A D | fabrics-cmd.c | 110 req->execute = nvmet_execute_prop_set; in nvmet_parse_fabrics_admin_cmd() 113 req->execute = nvmet_execute_prop_get; in nvmet_parse_fabrics_admin_cmd() 117 req->execute = nvmet_execute_auth_send; in nvmet_parse_fabrics_admin_cmd() 120 req->execute = nvmet_execute_auth_receive; in nvmet_parse_fabrics_admin_cmd() 156 req->execute = nvmet_execute_auth_send; in nvmet_parse_fabrics_io_cmd() 159 req->execute = nvmet_execute_auth_receive; in nvmet_parse_fabrics_io_cmd() 426 req->execute = nvmet_execute_admin_connect; in nvmet_parse_connect_cmd() 428 req->execute = nvmet_execute_io_connect; in nvmet_parse_connect_cmd()
|
| H A D | passthru.c | 412 req->execute = nvmet_passthru_execute_cmd; in nvmet_setup_passthru_command() 504 req->execute = nvmet_execute_async_event; in nvmet_parse_passthru_admin_cmd() 512 req->execute = nvmet_execute_keep_alive; in nvmet_parse_passthru_admin_cmd() 520 req->execute = nvmet_execute_set_features; in nvmet_parse_passthru_admin_cmd() 523 req->execute = nvmet_passthru_set_host_behaviour; in nvmet_parse_passthru_admin_cmd() 535 req->execute = nvmet_execute_get_features; in nvmet_parse_passthru_admin_cmd() 548 req->execute = nvmet_passthru_execute_cmd; in nvmet_parse_passthru_admin_cmd() 556 req->execute = nvmet_passthru_execute_cmd; in nvmet_parse_passthru_admin_cmd() 562 req->execute = nvmet_passthru_execute_cmd; in nvmet_parse_passthru_admin_cmd()
|
| H A D | discovery.c | 407 req->execute = nvmet_execute_disc_set_features; in nvmet_parse_discovery_cmd() 410 req->execute = nvmet_execute_disc_get_features; 413 req->execute = nvmet_execute_async_event; in nvmet_init_discovery() 416 req->execute = nvmet_execute_keep_alive; in nvmet_init_discovery() 419 req->execute = nvmet_execute_disc_get_log_page; in nvmet_exit_discovery() 422 req->execute = nvmet_execute_disc_identify;
|
| H A D | io-cmd-file.c | 367 req->execute = nvmet_file_execute_rw; in nvmet_file_parse_io_cmd() 370 req->execute = nvmet_file_execute_flush; in nvmet_file_parse_io_cmd() 373 req->execute = nvmet_file_execute_dsm; in nvmet_file_parse_io_cmd() 376 req->execute = nvmet_file_execute_write_zeroes; in nvmet_file_parse_io_cmd()
|
| H A D | admin-cmd.c | 1654 req->execute = nvmet_execute_delete_sq; in nvmet_parse_admin_cmd() 1657 req->execute = nvmet_execute_create_sq; in nvmet_parse_admin_cmd() 1660 req->execute = nvmet_execute_get_log_page; in nvmet_parse_admin_cmd() 1663 req->execute = nvmet_execute_delete_cq; in nvmet_parse_admin_cmd() 1666 req->execute = nvmet_execute_create_cq; in nvmet_parse_admin_cmd() 1669 req->execute = nvmet_execute_identify; in nvmet_parse_admin_cmd() 1672 req->execute = nvmet_execute_abort; in nvmet_parse_admin_cmd() 1675 req->execute = nvmet_execute_set_features; in nvmet_parse_admin_cmd() 1678 req->execute = nvmet_execute_get_features; in nvmet_parse_admin_cmd() 1681 req->execute = nvmet_execute_async_event; in nvmet_parse_admin_cmd() [all …]
|
| /linux/tools/testing/selftests/powerpc/pmu/ |
| H A D | lib.c | 140 char execute, name[128]; in parse_proc_maps() local 153 &start, &end, &execute, name); in parse_proc_maps() 157 if (execute != 'x') in parse_proc_maps()
|
| /linux/scripts/ |
| H A D | checkkconfigsymbols.py | 209 execute(["git", "reset", "--hard", commit]) 226 def execute(cmd): function 238 commits = execute(["git", "log", "--pretty=oneline", 247 stdout = execute(["git", "status", "--porcelain"]) 256 stdout = execute(["git", "rev-parse", "HEAD"]) 295 stdout = execute(["git", "ls-files"])
|
| /linux/tools/memory-model/litmus-tests/ |
| H A D | LB+unlocklockonceonce+poacquireonce.litmus | 6 * If two locked critical sections execute on the same CPU, all accesses 7 * in the first must execute before any accesses in the second, even if the
|
| /linux/drivers/net/wireless/ath/ath10k/ |
| H A D | bmi.c | 310 u32 cmdlen = sizeof(cmd.id) + sizeof(cmd.execute); in ath10k_bmi_execute() 311 u32 resplen = sizeof(resp.execute); in ath10k_bmi_execute() 314 ath10k_dbg(ar, ATH10K_DBG_BMI, "bmi execute address 0x%x param 0x%x\n", in ath10k_bmi_execute() 323 cmd.execute.addr = __cpu_to_le32(address); in ath10k_bmi_execute() 324 cmd.execute.param = __cpu_to_le32(param); in ath10k_bmi_execute() 332 if (resplen < sizeof(resp.execute)) { in ath10k_bmi_execute() 333 ath10k_warn(ar, "invalid execute response length (%d)\n", in ath10k_bmi_execute() 338 *result = __le32_to_cpu(resp.execute.result); in ath10k_bmi_execute() 340 ath10k_dbg(ar, ATH10K_DBG_BMI, "bmi execute result 0x%x\n", *result); in ath10k_bmi_execute()
|
| H A D | bmi.h | 117 } execute; member 167 } execute; member
|
| /linux/net/sunrpc/ |
| H A D | stats.c | 158 ktime_t backlog, execute, now; in rpc_count_iostats_metrics() local 182 execute = ktime_sub(now, task->tk_start); in rpc_count_iostats_metrics() 183 op_metrics->om_execute = ktime_add(op_metrics->om_execute, execute); in rpc_count_iostats_metrics() 189 trace_rpc_stats_latency(req->rq_task, backlog, req->rq_rtt, execute); in rpc_count_iostats_metrics()
|
| /linux/Documentation/admin-guide/ |
| H A D | mono.rst | 4 To configure Linux to automatically execute Mono-based .NET binaries 8 This will allow you to execute Mono-based .NET binaries just like any 70 that the ``.exe`` file has execute permissions.
|
| /linux/tools/testing/selftests/tc-testing/ |
| H A D | README | 6 execute them inside a network namespace dedicated to the task. 81 - execute 91 The execute and verify stages each run one command. The execute stage 155 pre- and post-execute stage 191 runs each command in the execute stage under valgrind,
|
| /linux/Documentation/livepatch/ |
| H A D | callbacks.rst | 6 to execute callback functions when a kernel object is (un)patched. They 69 in-kernel vmlinux targets, this means that callbacks will always execute 71 callbacks will only execute if the target module is loaded. When a 72 module target is (un)loaded, its callbacks will execute only if the
|
| /linux/drivers/gpu/drm/radeon/ |
| H A D | atom.c | 709 int execute = 0, target = U16(*ptr); in atom_op_jump() local 715 execute = ctx->ctx->cs_above; in atom_op_jump() 718 execute = ctx->ctx->cs_above || ctx->ctx->cs_equal; in atom_op_jump() 721 execute = 1; in atom_op_jump() 724 execute = !(ctx->ctx->cs_above || ctx->ctx->cs_equal); in atom_op_jump() 727 execute = !ctx->ctx->cs_above; in atom_op_jump() 730 execute = ctx->ctx->cs_equal; in atom_op_jump() 733 execute = !ctx->ctx->cs_equal; in atom_op_jump() 737 SDEBUG(" taken: %s\n", str_yes_no(execute)); in atom_op_jump() 739 if (execute) { in atom_op_jump()
|
| /linux/include/asm-generic/ |
| H A D | mm_hooks.h | 21 bool write, bool execute, bool foreign) in arch_vma_access_permitted() argument
|
| /linux/Documentation/sound/designs/ |
| H A D | tracepoints.rst | 39 value to these parameters, then execute ioctl(2) with SNDRV_PCM_IOCTL_HW_REFINE 85 with SNDRV_PCM_INFO_XXX. Typically, applications execute ioctl(2) with 87 of parameters and execute ioctl(2) with SNDRV_PCM_IOCTL_HW_PARAMS to 114 applications execute ioctl(2) with SNDRV_PCM_HW_REFINE or SNDRV_PCM_HW_PARAMS.
|
| /linux/arch/powerpc/include/asm/ |
| H A D | mmu_context.h | 262 bool execute, bool foreign); 266 bool write, bool execute, bool foreign) in arch_vma_access_permitted() argument
|
| /linux/drivers/staging/greybus/ |
| H A D | camera.c | 1058 ssize_t (*execute)(struct gb_camera *gcam, char *buf, size_t len); member 1066 .execute = gb_camera_debugfs_capabilities, 1071 .execute = gb_camera_debugfs_configure_streams, 1076 .execute = gb_camera_debugfs_capture, 1081 .execute = gb_camera_debugfs_flush, 1095 ret = op->execute(gcam, NULL, 0); in gb_camera_debugfs_read() 1122 ret = op->execute(gcam, kbuf, len); in gb_camera_debugfs_write()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-c2port | 65 The /sys/class/c2port/c2portX/flash_erase file execute 73 The /sys/class/c2port/c2portX/reset file execute a "reset"
|
| /linux/tools/memory-model/Documentation/ |
| H A D | explanation.txt | 200 P1 loads from flag before loading from buf, since CPUs execute 211 execute before itself, the specified outcome is impossible. 261 important assumption that CPUs execute instructions in the same order 829 First, a fence forces the CPU to execute various instructions in 834 the CPU to execute all po-earlier instructions before any 837 smp_rmb() forces the CPU to execute all po-earlier loads 840 smp_wmb() forces the CPU to execute all po-earlier stores 844 execute the load associated with the fence (e.g., the load 849 execute all po-earlier instructions before the store 1045 There are many situations where a CPU is obliged to execute two [all …]
|