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:readBuffer_
(Results
1 - 6
of
6
) sorted by relevance
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H
A
D
mtp_packet.cpp
114
std::vector<uint8_t>().swap(
readBuffer_
);
in Read()
115
int errorCode = mtpDriver_->Read(
readBuffer_
, readSize_);
in Read()
176
int errorCode = headerData_->Parser(
readBuffer_
, readSize_);
in ParserHead()
207
int errorCode = payloadData_->Parser(
readBuffer_
, readSize_);
in ParserPayload()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/stream/src/
H
A
D
file_source_stream.cpp
306
readBuffer_
= static_cast<uint8_t *>(malloc(desiredSize));
in GetData()
307
if (
readBuffer_
== nullptr) {
in GetData()
315
size_t bytesRead = fread(
readBuffer_
, sizeof(uint8_t), desiredSize, filePtr_);
in GetData()
322
free(
readBuffer_
);
in GetData()
323
readBuffer_
= nullptr;
in GetData()
327
outData.inputStreamBuffer = static_cast<uint8_t *>(
readBuffer_
);
in GetData()
406
if (
readBuffer_
!= nullptr) {
in ResetReadBuffer()
407
free(
readBuffer_
);
in ResetReadBuffer()
408
readBuffer_
= nullptr;
in ResetReadBuffer()
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/src/
H
A
D
webgl_arg.cpp
625
if (
readBuffer_
!= nullptr) {
in GenImageSource()
626
readBuffer_
.reset();
in GenImageSource()
628
readBuffer_
= std::make_unique<WebGLReadBufferArg>(env_);
in GenImageSource()
629
if (
readBuffer_
== nullptr) {
in GenImageSource()
636
napi_status status =
readBuffer_
->GenBufferData(pixels, formatMap->dataType);
in GenImageSource()
640
if (
readBuffer_
->GetBufferDataType() != formatMap->dataType) {
in GenImageSource()
648
if (
readBuffer_
->GetBufferDataType() == BUFFER_DATA_UINT_8 ||
in GenImageSource()
649
readBuffer_
->GetBufferDataType() == BUFFER_DATA_UINT_16) {
in GenImageSource()
650
succ = DecodeImageData(formatMap,
readBuffer_
.get(), srcOffset);
in GenImageSource()
707
return
readBuffer_
in GetWebGLReadBuffer()
[all...]
/foundation/multimedia/media_library/frameworks/services/media_mtp/include/
H
A
D
mtp_packet.h
63
std::vector<uint8_t>
readBuffer_
;
member in OHOS::Media::MtpPacket
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/stream/include/
H
A
D
file_source_stream.h
62
uint8_t *
readBuffer_
= nullptr;
member in OHOS::Media::FileSourceStream
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/webgl/
H
A
D
webgl_arg.h
651
std::unique_ptr<WebGLReadBufferArg>
readBuffer_
{ nullptr };
Completed in 9 milliseconds