Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:EXPR
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/drivers/scsi/snic/
H
A
D
snic.h
176
#define SNIC_BUG_ON(
EXPR
) \
178
if (
EXPR
) { \
179
SNIC_ERR("SNIC BUG(%s)\n", #
EXPR
); \
180
BUG_ON(
EXPR
); \
184
#define SNIC_BUG_ON(
EXPR
) \
186
if (
EXPR
) { \
188
#
EXPR
, __func__, __LINE__); \
189
WARN_ON_ONCE(
EXPR
); \
195
#define SNIC_ASSERT_NOT_IMPL(
EXPR
) \
197
if (
EXPR
) {\
[all...]
/kernel/linux/linux-6.6/drivers/scsi/snic/
H
A
D
snic.h
162
#define SNIC_BUG_ON(
EXPR
) \
164
if (
EXPR
) { \
165
SNIC_ERR("SNIC BUG(%s)\n", #
EXPR
); \
166
BUG_ON(
EXPR
); \
170
#define SNIC_BUG_ON(
EXPR
) \
172
if (
EXPR
) { \
174
#
EXPR
, __func__, __LINE__); \
175
WARN_ON_ONCE(
EXPR
); \
181
#define SNIC_ASSERT_NOT_IMPL(
EXPR
) \
183
if (
EXPR
) {\
[all...]
/kernel/linux/linux-5.10/scripts/
H
A
D
checkkconfigsymbols.py
25
EXPR
= r"(?:" + OPERATORS + r"|\s|" + SYMBOL + r")+"
variable
27
STMT = r"^\s*(?:if|select|imply|depends\s+on|(?:" + DEFAULT + r"))\s+" +
EXPR
35
REGEX_KCONFIG_EXPR = re.compile(
EXPR
)
/kernel/linux/linux-6.6/scripts/
H
A
D
checkkconfigsymbols.py
25
EXPR
= r"(?:" + OPERATORS + r"|\s|" + SYMBOL + r")+"
variable
27
STMT = r"^\s*(?:if|select|imply|depends\s+on|(?:" + DEFAULT + r"))\s+" +
EXPR
35
REGEX_KCONFIG_EXPR = re.compile(
EXPR
)
Completed in 4 milliseconds