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:cmdsItem
(Results
1 - 3
of
3
) sorted by relevance
/base/startup/init/services/init/lite/
H
A
D
init_jobs.c
71
cJSON *
cmdsItem
= cJSON_GetObjectItem(jobItem, CMDS_ARR_NAME_IN_JSON);
in ParseJob()
local
72
if (!cJSON_IsArray(
cmdsItem
)) {
in ParseJob()
76
int ret = GetCmdLinesFromJson(
cmdsItem
, &resJob->cmdLines);
in ParseJob()
/base/startup/init/test/unittest/init/
H
A
D
cmds_unittest.cpp
237
cJSON *
cmdsItem
= cJSON_GetObjectItem(jobItem, "jobs");
in HWTEST_F()
local
238
ASSERT_NE(nullptr,
cmdsItem
);
in HWTEST_F()
239
ASSERT_TRUE(cJSON_IsArray(
cmdsItem
));
in HWTEST_F()
241
cJSON *cmdsItem1 = cJSON_GetArrayItem(
cmdsItem
, 0);
in HWTEST_F()
/base/startup/init/test/unittest/lite/
H
A
D
cmd_func_test.cpp
728
cJSON *
cmdsItem
= cJSON_GetObjectItem(jobItem, CMDS_ARR_NAME_IN_JSON.c_str());
in CheckJob()
local
729
EXPECT_TRUE(
cmdsItem
!= nullptr);
in CheckJob()
730
EXPECT_TRUE(cJSON_IsArray(
cmdsItem
));
in CheckJob()
732
int cmdLinesCnt = cJSON_GetArraySize(
cmdsItem
);
in CheckJob()
736
char *cmdLineStr = cJSON_GetStringValue(cJSON_GetArrayItem(
cmdsItem
, i));
in CheckJob()
Completed in 3 milliseconds