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:nArgs
(Results
1 - 2
of
2
) sorted by relevance
/kernel/liteos_a/syscall/
H
A
D
los_syscall.c
100
UINT8
nArgs
;
in OsArmA32SyscallHandle()
local
110
nArgs
= g_syscallNArgs[cmd / NARG_PER_BYTE]; /* 4bit per nargs */
in OsArmA32SyscallHandle()
111
nArgs
= (cmd & 1) ? (
nArgs
>> NARG_BITS) : (
nArgs
& NARG_MASK);
in OsArmA32SyscallHandle()
112
if ((handle == 0) || (
nArgs
> ARG_NUM_7)) {
in OsArmA32SyscallHandle()
113
PRINT_ERR("Unsupported syscall ID: %d
nArgs
: %d\n", cmd,
nArgs
);
in OsArmA32SyscallHandle()
119
switch (
nArgs
) {
in OsArmA32SyscallHandle()
/kernel/liteos_m/components/security/syscall/
H
A
D
los_syscall.c
71
UINT8
nArgs
;
in OsSyscallHandle()
local
81
nArgs
= g_syscallNArgs[svcNum / NARG_PER_BYTE]; /* 4bit per nargs */
in OsSyscallHandle()
82
nArgs
= (svcNum & 1) ? (
nArgs
>> NARG_BITS) : (
nArgs
& NARG_MASK);
in OsSyscallHandle()
83
if ((handle == 0) || (
nArgs
> ARG_NUM_7)) {
in OsSyscallHandle()
84
PRINT_ERR("Unsupported syscall ID: %d
nArgs
: %d\n", svcNum,
nArgs
);
in OsSyscallHandle()
89
switch (
nArgs
) {
in OsSyscallHandle()
Completed in 1 milliseconds