Home
last modified time | relevance | path

Searched full:execute (Results 1 – 25 of 3741) sorted by relevance

12345678910>>...150

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dpersist_data.py93 cursor.execute("pragma synchronous = off;")
97 cursor.execute("pragma journal_mode = WAL;")
98 cursor.execute("pragma wal_autocheckpoint = 100;")
114 cursor.execute(*query)
146 cursor.execute(*query)
161 cursor.execute("SELECT * from %s where key=?;" % self.table, [key])
172 cursor.execute("DELETE from %s where key=?;" % self.table, [key])
183 cursor.execute("BEGIN EXCLUSIVE")
185 cursor.execute("SELECT * from %s where key=?;" % self.table, [key])
188 cursor.execute("UPDATE %s SET value=? WHERE key=?;" % self.table, [value, key])
[all …]
/OK3568_Linux_fs/kernel/tools/perf/scripts/python/
H A Devent_analyzing_sample.py48 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 …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/hashserv/
H A D__init__.py51 cursor.execute('''
72 cursor.execute('PRAGMA journal_mode = WAL')
73 cursor.execute('PRAGMA synchronous = %s' % ('NORMAL' if sync else 'OFF'))
76 cursor.execute('DROP INDEX IF EXISTS taskhash_lookup')
77 cursor.execute('DROP INDEX IF EXISTS outhash_lookup')
78 cursor.execute('DROP INDEX IF EXISTS taskhash_lookup_v2')
79 cursor.execute('DROP INDEX IF EXISTS outhash_lookup_v2')
82 cursor.execute('DROP TABLE IF EXISTS tasks_v2')
85 … cursor.execute('CREATE INDEX IF NOT EXISTS taskhash_lookup_v3 ON unihashes_v2 (method, taskhash)')
86 … cursor.execute('CREATE INDEX IF NOT EXISTS outhash_lookup_v3 ON outhashes_v2 (method, outhash)')
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0092-script-execute-Fix-NULL-dereference-in-grub_script_e.patch4 Subject: [PATCH] script/execute: Fix NULL dereference in
11 grub-core/script/execute.c | 2 +-
14 diff --git a/grub-core/script/execute.c b/grub-core/script/execute.c
16 --- a/grub-core/script/execute.c
17 +++ b/grub-core/script/execute.c
H A D0096-script-execute-Don-t-crash-on-a-for-loop-with-no-ite.patch4 Subject: [PATCH] script/execute: Don't crash on a "for" loop with no items
21 grub-core/script/execute.c | 3 +++
24 diff --git a/grub-core/script/execute.c b/grub-core/script/execute.c
26 --- a/grub-core/script/execute.c
27 +++ b/grub-core/script/execute.c
H A D0094-script-execute-Avoid-crash-when-using-outside-a-func.patch4 Subject: [PATCH] script/execute: Avoid crash when using "$#" outside a
20 grub-core/script/execute.c | 2 +-
23 diff --git a/grub-core/script/execute.c b/grub-core/script/execute.c
25 --- a/grub-core/script/execute.c
26 +++ b/grub-core/script/execute.c
/OK3568_Linux_fs/yocto/poky/scripts/
H A Dresulttool9 # To store test results from oeqa automated tests, execute the below
12 # To merge test results, execute the below
15 # To report test report, execute the below
18 # To perform regression file analysis, execute the below
21 # To execute manual test cases, execute the below
/OK3568_Linux_fs/kernel/arch/powerpc/mm/book3s64/
H A Dpkeys.c159 * execute only key. Mark it unavailable. in pkey_early_init_devtree()
171 * Allow execute in IAMR. in pkey_early_init_devtree()
373 * If the currently associated pkey is execute-only, but the requested in __arch_override_mprotect_pkey()
374 * protection is not execute-only, move it back to the default pkey. in __arch_override_mprotect_pkey()
380 * The requested protection is execute-only. Hence let's use an in __arch_override_mprotect_pkey()
381 * execute-only pkey. in __arch_override_mprotect_pkey()
393 static bool pkey_access_permitted(int pkey, bool write, bool execute) in pkey_access_permitted() argument
399 if (execute) in pkey_access_permitted()
409 bool arch_pte_access_permitted(u64 pte, bool write, bool execute) in arch_pte_access_permitted() argument
414 return pkey_access_permitted(pte_to_pkey_bits(pte), write, execute); in arch_pte_access_permitted()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/manual/
H A Dkernel-dev.json17 …"action": "Execute the test case steps asdocumented on the \"Kernel Development Test Cases\" wiki.…
39 …"action": "Execute the test case steps asdocumented on the \"Kernel Development Test Cases\" wiki.…
61 …"action": "Execute the test case steps asdocumented on the \"Kernel Development Test Cases\" wiki.…
83 …"action": "Execute the test case steps asdocumented on the \"Kernel Development Test Cases\" wiki.…
105 …"action": "Execute the test case steps asdocumented on the \"Kernel Development Test Cases\" wiki.…
127 …"action": "Execute the test case steps asdocumented on the \"Kernel Development Test Cases\" wiki.…
149 …"action": "Execute the test case steps asdocumented on the \"Kernel Development Test Cases\" wiki.…
171 …"action": "Execute the test case steps asdocumented on the \"Kernel Development Test Cases\" wiki.…
193 …"action": "Execute the test case steps asdocumented on the \"Kernel Development Test Cases\" wiki.…
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/mm/
H A Dpkey_siginfo.c71 * If the current fault occurred due to lack of execute rights, in segv_handler()
72 * reassociate the page with the exec-only pkey since execute in segv_handler()
109 /* No read, write and execute restrictions */ in protect()
159 (rights == PKEY_DISABLE_EXECUTE) ? "execute" : in protect_access()
165 * pkey and read, write or execute from it in protect_access()
204 /* Execute protection test */ in protect_access()
206 /* Jump to the region and execute instructions */ in protect_access()
285 * attempting to read, write or execute instructions from a in test()
314 /* Setup and start protect and protect-and-execute threads */ in test()
315 puts("starting thread pair (protect, protect-and-execute)"); in test()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/gnome-layer/recipes-graphics/openbox/openbox-xdgmenu/
H A D7_6.diff8 - g_printf("<action name=\"Execute\"><execute>%s</execute></action>\n", exec),
9 + g_printf("<action name=\"Execute\"><command>%s</command></action>\n", exec),
/OK3568_Linux_fs/kernel/Documentation/admin-guide/pm/
H A Dintel-speed-select.rst45 To get help with the tool, execute the command below::
60 To check the current platform and driver capaibilities, execute::
97 profiles, execute the command below::
122 To check if the system is locked, execute the following command::
141 To get properties of a specific performance level (For example for the level 0, below), execute the…
169 understand more, execute "intel-speed-select perf-profile info" for performance
196 To get the current performance level, execute::
241 To the change the performance level to 4, execute::
319 To enable and check the options, execute::
347 To enable with the platform default priority type, execute::
[all …]
/OK3568_Linux_fs/kernel/arch/x86/mm/
H A Dpkeys.c21 /* Do we need to assign a pkey for mm's execute-only maps? */ in __execute_only_pkey()
33 * first and assume that if the execute-only pkey is in __execute_only_pkey()
50 * 0 and effectively disable execute-only support. in __execute_only_pkey()
87 * The mapping is execute-only. Go try to get the in __arch_override_mprotect_pkey()
88 * execute-only protection key. If we fail to do that, in __arch_override_mprotect_pkey()
89 * fall through as if we do not have execute-only in __arch_override_mprotect_pkey()
108 * setup execute-only), inherit the pkey from the VMA we in __arch_override_mprotect_pkey()
H A Dsetup_nx.c45 printk(KERN_NOTICE "Notice: NX (Execute Disable) protection " in x86_report_nx()
50 printk(KERN_INFO "NX (Execute Disable) protection: " in x86_report_nx()
53 printk(KERN_INFO "NX (Execute Disable) protection: " in x86_report_nx()
58 printk(KERN_NOTICE "Notice: NX (Execute Disable) protection " in x86_report_nx()
/OK3568_Linux_fs/kernel/tools/power/pm-graph/
H A Dsleepgraph.812 image built with a few extra options enabled, the tool will execute a
58 will execute the suspend via turbostat and collect data in the timeline log.
123 Execute \fIn\fR consecutive tests at \fId\fR second intervals.
125 Execute tests continuously over \fIn\fR days, hours, or minutes at \fId\fR second intervals.
280 Execute a mem suspend with a 15 second wakeup. Include the logs in the html.
284 Execute a standby with a 15 second wakeup. Change the output folder name.
288 Execute a freeze with no wakeup (require keypress). Change output folder name.
294 Execute a suspend & include dev mode source calls, limit callbacks to 5ms or larger.
302 Execute a suspend using a custom command.
/OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/
H A DREADME6 execute them inside a network namespace dedicated to the task.
82 - execute
92 The execute and verify stages each run one command. The execute stage
131 Execute test cases that use a physical device, where
149 -e ID [ID ...], --execute ID [ID ...]
150 Execute the specified test cases with specified IDs
200 pre- and post-execute stage
236 runs each command in the execute stage under valgrind,
/OK3568_Linux_fs/kernel/Documentation/admin-guide/
H A Dkernel-per-CPU-kthreads.rst64 1. Use irq affinity to force the irq threads to execute on
85 Execute softirq handlers when threaded or when under heavy load.
97 both kernel threads and interrupts to execute elsewhere.
171 forcing both kernel threads and interrupts to execute elsewhere.
182 kernel threads and interrupts to execute elsewhere.
206 to execute elsewhere.
220 to execute elsewhere.
226 Execute workqueue requests
298 Execute RCU callbacks in CONFIG_RCU_BOOST=y kernels.
310 CPUs that might execute within the kernel.
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Dcli.h20 * cli_simple_run_command() - Execute a command with the simple CLI
22 * @cmd: String containing the command to execute
42 * cli_simple_run_command_list() - Execute a list of command
121 * not have a command. Returns the command to execute after
123 * @return true to execute securely, else false
127 /** cli_secure_boot_cmd() - execute a command as securely as possible
/OK3568_Linux_fs/kernel/drivers/s390/char/
H A Dtape_std.c167 /* execute it */ in tape_std_read_block_id()
281 /* execute it */ in tape_std_mtfsf()
306 /* execute it */ in tape_std_mtfsr()
338 /* execute it */ in tape_std_mtbsr()
368 /* execute it */ in tape_std_mtweof()
393 /* execute it */ in tape_std_mtbsfm()
417 /* execute it */ in tape_std_mtbsf()
448 /* execute it */ in tape_std_mtfsfm()
477 /* execute it */ in tape_std_mtrew()
499 /* execute it */ in tape_std_mtoffl()
[all …]
/OK3568_Linux_fs/kernel/tools/memory-model/Documentation/
H A Dexplanation.txt199 P1 loads from flag before loading from buf, since CPUs execute
210 execute before itself, the specified outcome is impossible.
260 important assumption that CPUs execute instructions in the same order
776 First, a fence forces the CPU to execute various instructions in
781 the CPU to execute all po-earlier instructions before any
784 smp_rmb() forces the CPU to execute all po-earlier loads
787 smp_wmb() forces the CPU to execute all po-earlier stores
791 execute the load associated with the fence (e.g., the load
796 execute all po-earlier instructions before the store
962 There are many situations where a CPU is obliged to execute two
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/meta/
H A Dcve-update-db-native.bb150 cursor = conn.execute("select DATE from META where YEAR = ?", (year,))
157 conn.execute("delete from PRODUCTS where ID like ?", ('CVE-%d%%' % year,)).close()
164 … conn.execute("insert or replace into META values (?, ?)", [year, last_modified]).close()
183 c.execute("CREATE TABLE IF NOT EXISTS META (YEAR INTEGER UNIQUE, DATE TEXT)")
185 c.execute("CREATE TABLE IF NOT EXISTS NVD (ID TEXT UNIQUE, SUMMARY TEXT, \
188 c.execute("CREATE TABLE IF NOT EXISTS PRODUCTS (ID TEXT, \
191 c.execute("CREATE INDEX IF NOT EXISTS PRODUCT_ID_IDX on PRODUCTS(ID);")
281 conn.execute("insert or replace into NVD values (?, ?, ?, ?, ?, ?)",
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/as.html/
H A DD30V_002dGuarded.html78 <dd><p>Execute the instruction if flag f0 is true.
81 <dd><p>Execute the instruction if flag f0 is false.
84 <dd><p>Execute the instruction if flag f1 is true.
87 <dd><p>Execute the instruction if flag f1 is false.
90 <dd><p>Execute the instruction if both flags f0 and f1 are true.
93 <dd><p>Execute the instruction if flag f0 is true and flag f1 is false.
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/systemd/systemd/
H A D0010-Use-uintmax_t-for-handling-rlim_t.patch12 execute.c:3446:36: error: format '%lu' expects argument of type 'long unsigned int', but argument 5…
27 src/core/execute.c | 4 ++--
89 diff --git a/src/core/execute.c b/src/core/execute.c
91 --- a/src/core/execute.c
92 +++ b/src/core/execute.c
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/as.html/
H A DD30V_002dGuarded.html78 <dd><p>Execute the instruction if flag f0 is true.
81 <dd><p>Execute the instruction if flag f0 is false.
84 <dd><p>Execute the instruction if flag f1 is true.
87 <dd><p>Execute the instruction if flag f1 is false.
90 <dd><p>Execute the instruction if both flags f0 and f1 are true.
93 <dd><p>Execute the instruction if flag f0 is true and flag f1 is false.
/OK3568_Linux_fs/kernel/scripts/gdb/linux/
H A Dsymbols.py39 show_pagination = gdb.execute("show pagination", to_string=True)
41 gdb.execute("set pagination off")
51 gdb.execute("set pagination %s" % ("on" if pagination else "off"))
132 gdb.execute(cmdline, to_string=True)
153 gdb.execute("symbol-file", to_string=True)
154 gdb.execute("symbol-file {0}".format(orig_vmlinux))

12345678910>>...150