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:sys_sem_valid
(Results
1 - 5
of
5
) sorted by relevance
/third_party/lwip/src/include/lwip/
H
A
D
sys.h
59
#define
sys_sem_valid
(s) 0
macro
118
#define sys_mutex_valid(mutex)
sys_sem_valid
(mutex)
228
#ifndef
sys_sem_valid
236
int
sys_sem_valid
(sys_sem_t *sem);
241
* Invalidate a semaphore so that
sys_sem_valid
() returns 0.
250
* Same as
sys_sem_valid
() but taking a value, not a pointer
252
#define sys_sem_valid_val(sem)
sys_sem_valid
(&(sem))
/third_party/lwip/test/unit/arch/
H
A
D
sys_arch.h
36
#define
sys_sem_valid
(sema) ((sema) != NULL)
macro
/third_party/lwip/src/api/
H
A
D
api_lib.c
169
LWIP_ASSERT("conn has no op_completed",
sys_sem_valid
(&conn->op_completed));
in netconn_new_with_proto_and_callback()
1349
if (!
sys_sem_valid
(sem)) {
1352
LWIP_ASSERT("LWIP_NETCONN_THREAD_SEM_ALLOC() failed",
sys_sem_valid
(LWIP_NETCONN_THREAD_SEM_GET()));
1360
if (
sys_sem_valid
(sem)) {
H
A
D
tcpip.c
521
LWIP_ASSERT("semaphore not initialized",
sys_sem_valid
(sem));
in tcpip_send_msg_wait_sem()
H
A
D
api_msg.c
524
LWIP_ASSERT("inavlid op_completed_sem",
sys_sem_valid
(op_completed_sem));
1252
if (
sys_sem_valid
(LWIP_API_MSG_SEM(msg))) {
Completed in 6 milliseconds