Home
last modified time | relevance | path

Searched full:exists (Results 1 – 25 of 2475) sorted by relevance

12345678910>>...99

/linux-6.12.1/tools/memory-model/Documentation/
Dlitmus-tests.txt87 20 exists (1:r0=1 /\ 1:r1=0)
158 Line 20 is the "exists" assertion expression to evaluate the final state.
174 The "exists" assertion on line 20 is satisfied if the consumer sees the
196 9 Condition exists (1:r0=1 /\ 1:r1=0)
202 indicates that the bad result flagged by the "exists" clause never
207 "exists" clause indicates a bad result. To see this, invert the "exists"
209 of this line indicate the number of end states satisfying the "exists"
222 "Never" on line 10, the state flagged by the "exists" clause is not
232 "No" says that the "exists" clause was not satisfied by any execution,
235 of end states satisfying and not satisfying the "exists" clause, just
[all …]
/linux-6.12.1/drivers/infiniband/core/
Duverbs_uapi.c37 size_t alloc_size, bool *exists) in uapi_add_get_elm() argument
43 *exists = false; in uapi_add_get_elm()
53 *exists = true; in uapi_add_get_elm()
65 bool exists; in uapi_create_write() local
73 &exists); in uapi_create_write()
77 if (WARN_ON(exists && (def->write.is_ex != method_elm->is_ex))) in uapi_create_write()
105 bool exists; in uapi_merge_method() local
111 &exists); in uapi_merge_method()
114 if (exists) { in uapi_merge_method()
174 bool exists; in uapi_merge_obj_tree() local
[all …]
/linux-6.12.1/fs/afs/
Dafs_vl.h30 AFSVL_IDEXIST = 363520, /* Volume Id entry exists in vl database */
32 AFSVL_NAMEEXIST = 363522, /* Volume name entry exists in vl database */
43 AFSVL_NOREPSERVER = 363533, /* No such Replication server site exists */
44 AFSVL_DUPREPSERVER = 363534, /* Replication site already exists */
83 #define AFS_VLF_RWEXISTS 0x1000 /* R/W volume exists */
84 #define AFS_VLF_ROEXISTS 0x2000 /* R/O volume exists */
85 #define AFS_VLF_BACKEXISTS 0x4000 /* backup volume exists */
/linux-6.12.1/drivers/input/joystick/
Dcobra.c33 unsigned char exists; member
100 if ((r = cobra_read_packet(gameport, data)) != cobra->exists) { in cobra_poll()
106 if (cobra->exists & r & (1 << i)) { in cobra_poll()
156 cobra->exists = cobra_read_packet(gameport, data); in cobra_connect()
159 if ((cobra->exists >> i) & data[i] & 1) { in cobra_connect()
162 cobra->exists &= ~(1 << i); in cobra_connect()
165 if (!cobra->exists) { in cobra_connect()
174 if (~(cobra->exists >> i) & 1) in cobra_connect()
228 if ((cobra->exists >> i) & 1) in cobra_disconnect()
/linux-6.12.1/Documentation/networking/
Dmac80211-auth-assoc-deauth.txt17 mac80211->driver: sta_state(AP, not-exists)
28 mac80211->driver: sta_state(AP, exists)
56 mac80211->driver: sta_state(AP, exists)
90 mac80211->driver: sta_state(AP,exists)
91 mac80211->driver: sta_state(AP,not-exists)
/linux-6.12.1/drivers/clk/bcm/
Dclk-kona.h46 #define gate_exists(gate) FLAG_TEST(gate, GATE, EXISTS)
57 #define divider_exists(div) FLAG_TEST(div, DIV, EXISTS)
63 #define trigger_exists(trig) FLAG_TEST(trig, TRIG, EXISTS)
159 FLAG(GATE, EXISTS), \
170 FLAG(GATE, EXISTS), \
181 FLAG(GATE, NO_DISABLE)|FLAG(GATE, EXISTS), \
191 FLAG(GATE, ENABLED)|FLAG(GATE, EXISTS), \
199 .flags = FLAG(GATE, HW)|FLAG(GATE, EXISTS), \
275 * EXISTS means this divider exists
287 .flags = FLAG(DIV, EXISTS)|FLAG(DIV, FIXED), \
[all …]
/linux-6.12.1/net/sched/
Dact_ife.c297 int len, bool atomic, bool exists) in __add_metainfo() argument
316 if (exists) in __add_metainfo()
319 if (exists) in __add_metainfo()
327 bool exists) in add_metainfo_and_get_ops() argument
333 ret = __add_metainfo(ops, ife, metaid, NULL, 0, true, exists); in add_metainfo_and_get_ops()
340 int len, bool exists) in add_metainfo() argument
347 ret = __add_metainfo(ops, ife, metaid, metaval, len, false, exists); in add_metainfo()
354 static int use_all_metadata(struct tcf_ife_info *ife, bool exists) in use_all_metadata() argument
362 rc = add_metainfo_and_get_ops(o, ife, o->metaid, exists); in use_all_metadata()
459 bool exists, bool rtnl_held) in populate_metalist() argument
[all …]
Dact_vlan.c134 bool exists = false; in tcf_vlan_init() local
153 exists = err; in tcf_vlan_init()
154 if (exists && bind) in tcf_vlan_init()
163 if (exists) in tcf_vlan_init()
171 if (exists) in tcf_vlan_init()
185 if (exists) in tcf_vlan_init()
203 if (exists) in tcf_vlan_init()
211 if (exists) in tcf_vlan_init()
219 if (!exists) { in tcf_vlan_init()
Dact_simple.c99 bool exists = false; in tcf_simp_init() local
119 exists = err; in tcf_simp_init()
120 if (exists && bind) in tcf_simp_init()
124 if (exists) in tcf_simp_init()
131 if (!exists) { in tcf_simp_init()
/linux-6.12.1/rust/kernel/list/
Darc.rs19 /// a [`ListArc`] exists or not. We refer to this logic as "the tracking inside `T`".
21 /// We allow the case where the tracking inside `T` thinks that a [`ListArc`] exists, but actually,
23 /// exists, but the tracking thinks it doesn't. This is because the former can at most result in us
29 /// keeping track of anything. To do this, you always claim that a [`ListArc`] exists, even if
32 /// refcounted object, as you otherwise have no way of knowing whether a [`ListArc`] exists.
37 /// reference exists. (But only if that's not actually the case.)
67 /// that a [`ListArc`] exists, to thinking that a [`ListArc`] exists.
75 /// * The `untracked` strategy does not actually keep track of whether a [`ListArc`] exists. When
141 /// also keep track of whether a `ListArc` exists using a boolean, which could allow for the
146 /// Note that we allow the case where the tracking inside `T` thinks that a `ListArc` exists, but
[all …]
/linux-6.12.1/Documentation/sphinx/
Dparse-headers.pl153 delete $ioctls{$1} if (exists($ioctls{$1}));
157 delete $defines{$1} if (exists($defines{$1}));
161 delete $typedefs{$1} if (exists($typedefs{$1}));
165 delete $enums{$1} if (exists($enums{$1}));
169 delete $structs{$1} if (exists($structs{$1}));
173 delete $enum_symbols{$1} if (exists($enum_symbols{$1}));
200 $ioctls{$old} = $new if (exists($ioctls{$old}));
204 $defines{$old} = $new if (exists($defines{$old}));
208 $enum_symbols{$old} = $new if (exists($enum_symbols{$old}));
212 $typedefs{$old} = $new if (exists($typedefs{$old}));
[all …]
/linux-6.12.1/scripts/coccinelle/tests/
Dodd_ptr_err.cocci17 @ok1 exists@
28 @ok2 exists@
43 @r1 depends on patch && !context && !org && !report exists@
64 @r1_context depends on !patch && (context || org || report) exists@
83 @r1_disj depends on !patch && (context || org || report) exists@
/linux-6.12.1/scripts/coccinelle/iterators/
Dfor_each_child.cocci111 @rulethree depends on patch && !context && !org && !report exists@
135 ... when exists
147 @ruleone_context depends on !patch && (context || org || report) exists@
185 @ruletwo_context depends on !patch && (context || org || report) exists@
239 @rulethree_context depends on !patch && (context || org || report) exists@
262 ... when exists
273 @rulethree_disj depends on !patch && (context || org || report) exists@
288 ... when exists
/linux-6.12.1/scripts/coccinelle/api/
Datomic_as_refcounter.cocci13 @r1 exists@
61 @r4 exists@
94 @r2 exists@
113 @r3 exists@
Dstream_open.cocci41 ... when exists
43 ... when exists
56 ... when exists
58 ... when exists
67 ... when exists
69 ... when exists
/linux-6.12.1/tools/perf/Documentation/
Dbuild-docdep.perl28 if (exists $include{$i}) {
30 if (!exists $include{$text}{$j}) {
42 if (! exists $included{$text} &&
/linux-6.12.1/tools/testing/selftests/drivers/net/hw/
Dpp_alloc_fail.py21 if not os.path.exists("/sys/kernel/debug/fail_function"):
24 if not os.path.exists("/sys/kernel/debug/fail_function/page_pool_alloc_pages"):
37 if not os.path.exists("/sys/kernel/debug/fail_function"):
40 if os.path.exists("/sys/kernel/debug/fail_function/page_pool_alloc_pages"):
/linux-6.12.1/Documentation/admin-guide/
Dcgroup-v2.rst256 Initially, only the root cgroup exists to which all processes belong.
848 A read-write single value file which exists on non-root
870 A read-write new-line separated values file which exists on
896 A read-write new-line separated values file which exists on
921 A read-only space separated values file which exists on all
928 A read-write space separated values file which exists on all
943 A read-only flat-keyed file which exists on non-root cgroups.
995 A read-write single value file which exists on non-root cgroups.
1021 A write-only single value file which exists in non-root cgroups.
1046 The reason this control attribute exists is that PSI accounts stalls for
[all …]
/linux-6.12.1/tools/testing/selftests/powerpc/dexcr/
Ddexcr.c24 volatile bool exists; in dexcr_exists() local
38 exists = false; in dexcr_exists()
40 exists = true; in dexcr_exists()
44 return exists; in dexcr_exists()
/linux-6.12.1/Documentation/mm/
Dhugetlbfs_reserv.rst11 are to be used. If no huge page exists at page fault time, the task is sent
125 exists or did exist for the corresponding page. As reservations are
128 a reservation exists for the corresponding page. As reservations are
169 entry indicates a reservation exists.
188 consult the reservation map to determine if a reservation exists. In addition,
196 reservation exists for the address within the mapping(vma). See the section
200 0 or 1. 0 if a reservation exists for the address, 1 if no reservation exists.
206 exists and can be used for the allocation, the routine dequeue_huge_page_vma()
213 reservation exists (see the section "Memory Policy and Reservations" for
236 value of the subpool associated with the page if it exists. This will be used
[all …]
/linux-6.12.1/tools/testing/kunit/
Dkunit_kernel.py170 if not os.path.exists(path):
179 if not os.path.exists(path):
205 # exists (I learned this through experimentation and could not find it
211 # exists as a file.
284 if build_dir and not os.path.exists(build_dir):
297 if os.path.exists(old_path):
304 if not os.path.exists(old_path):
313 if not os.path.exists(kconfig_path):
/linux-6.12.1/tools/testing/selftests/ftrace/test.d/instances/
Dinstance-event.tc73 fail "foo still exists"
80 fail "foo still exists"
136 fail "instance $d still exists"
/linux-6.12.1/Documentation/devicetree/bindings/powerpc/
Dibm,powerpc-cpu-features.txt153 This property exists when the hv-support property HFSCR bit is set. This
157 This property also exists if an HFSCR bit corresponds with this feature.
166 This property exists when the os-support property FSCR bit is set. This
170 This property also exists if an FSCR bit corresponds with this feature.
199 If this property exists then it is a list of phandles to cpu feature
/linux-6.12.1/Documentation/admin-guide/media/
Divtv.rst33 * Hardware mpeg2 capture of FM radio where hardware support exists
129 Write-only. Only present if the MPEG decoder (i.e. CX23415) exists.
172 Write-only. Only present if the MPEG decoder (i.e. CX23415) exists.
205 Read-only. Only present if the MPEG decoder (i.e. CX23415) exists.
216 Write-only. Only present if the MPEG decoder (i.e. CX23415) exists.
/linux-6.12.1/tools/power/x86/amd_pstate_tracer/
Damd_pstate_trace.py68 if os.path.exists(file_name):
85 if os.path.exists(file_name):
100 if os.path.exists(file_name):
178 if os.path.exists('cpu.csv'):
302 if not os.path.exists('results'):
307 if os.path.exists(test_name):
308 …print('The test name directory already exists. Please provide a unique test name. Test re-run not …

12345678910>>...99