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:d_buffer
(Results
1 - 3
of
3
) sorted by relevance
/third_party/NuttX/drivers/pipes/
H
A
D
pipe_common.c
197
if (vnode->useCount == 1 && dev->
d_buffer
== NULL)
in pipecommon_open()
199
dev->
d_buffer
= (uint8_t *)malloc(dev->d_bufsize);
in pipecommon_open()
200
if (!dev->
d_buffer
)
in pipecommon_open()
355
free(dev->
d_buffer
);
in pipecommon_close()
356
dev->
d_buffer
= NULL;
in pipecommon_close()
446
ret = LOS_ArchCopyToUser(buffer, dev->
d_buffer
+ dev->d_rdndx, sizeof(char));
in pipecommon_read()
617
ret = LOS_ArchCopyFromUser(dev->
d_buffer
+ dev->d_wrndx, buffer, sizeof(char));
in pipecommon_write()
800
if (dev->
d_buffer
)
in pipecommon_unlink()
802
free(dev->
d_buffer
);
in pipecommon_unlink()
H
A
D
pipe.c
230
if (olddev->
d_buffer
!= NULL)
in UpdateDev()
232
free(olddev->
d_buffer
);
in UpdateDev()
233
olddev->
d_buffer
= NULL;
in UpdateDev()
H
A
D
pipe_common.h
112
sem_t d_bfsem; /* Used to serialize access to
d_buffer
and indices */
115
pipe_ndx_t d_wrndx; /* Index in
d_buffer
to save next byte written */
116
pipe_ndx_t d_rdndx; /* Index in
d_buffer
to return the next byte read */
117
pipe_ndx_t d_bufsize; /* allocated size of
d_buffer
in bytes */
122
uint8_t *
d_buffer
; /* Buffer allocated when device opened */
member
Completed in 3 milliseconds