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:checkConfig
(Results
1 - 3
of
3
) sorted by relevance
/foundation/graphic/graphic_2d/rosen/samples/hello_native_buffer/
H
A
D
hello_native_buffer.cpp
47
void CompareOH_NativeBufferConfig(const OH_NativeBuffer_Config &config, const OH_NativeBuffer_Config &
checkConfig
)
in CompareOH_NativeBufferConfig()
argument
49
if (config.width !=
checkConfig
.width) {
in CompareOH_NativeBufferConfig()
52
if (config.height !=
checkConfig
.height) {
in CompareOH_NativeBufferConfig()
55
if (config.format !=
checkConfig
.format) {
in CompareOH_NativeBufferConfig()
58
if (config.usage !=
checkConfig
.usage) {
in CompareOH_NativeBufferConfig()
78
OH_NativeBuffer_Config
checkConfig
= {};
in main()
local
79
OH_NativeBuffer_GetConfig(buffer, &
checkConfig
);
in main()
80
CompareOH_NativeBufferConfig(config,
checkConfig
);
in main()
/foundation/graphic/graphic_surface/surface/test/fuzztest/nativebuffer_fuzzer/
H
A
D
nativebuffer_fuzzer.cpp
43
OH_NativeBuffer_Config
checkConfig
= GetData<OH_NativeBuffer_Config>();
in DoSomethingInterestingWithMyAPI()
local
50
OH_NativeBuffer_GetConfig(buffer, &
checkConfig
);
in DoSomethingInterestingWithMyAPI()
/foundation/graphic/graphic_surface/surface/test/unittest/
H
A
D
native_buffer_test.cpp
48
static inline OH_NativeBuffer_Config
checkConfig
= {};
member in OHOS::Rosen::NativeBufferTest
146
OH_NativeBuffer_GetConfig(buffer, &
checkConfig
);
in HWTEST_F()
147
ASSERT_NE(&
checkConfig
, nullptr);
in HWTEST_F()
160
checkConfig
.width = 0x0;
in HWTEST_F()
161
checkConfig
.height = 0x0;
in HWTEST_F()
162
checkConfig
.format = 0x0;
in HWTEST_F()
163
checkConfig
.usage = 0x0;
in HWTEST_F()
164
OH_NativeBuffer_GetConfig(nullptr, &
checkConfig
);
in HWTEST_F()
165
ASSERT_EQ(
checkConfig
.width, 0x0);
in HWTEST_F()
166
ASSERT_EQ(
checkConfig
in HWTEST_F()
[all...]
Completed in 3 milliseconds