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:pa_flist
(Results
1 - 4
of
4
) sorted by relevance
/third_party/pulseaudio/src/pulsecore/
H
A
D
flist.h
31
typedef struct
pa_flist
pa_flist
;
typedef
33
pa_flist
* pa_flist_new(unsigned size);
36
pa_flist
* pa_flist_new_with_name(unsigned size, const char *name);
37
void pa_flist_free(
pa_flist
*l, pa_free_cb_t free_cb);
40
int pa_flist_push(
pa_flist
*l, void *p);
41
void* pa_flist_pop(
pa_flist
*l);
48
pa_flist
*volatile flist; \
55
static inline
pa_flist
* name##_flist_get(void) { \
H
A
D
flist.c
54
struct
pa_flist
{
struct
71
static pa_flist_elem *stack_pop(
pa_flist
*flist, pa_atomic_t *list) {
in stack_pop()
87
static void stack_push(
pa_flist
*flist, pa_atomic_t *list, pa_flist_elem *new_elem) {
in stack_push()
102
pa_flist
*pa_flist_new_with_name(unsigned size, const char *name) {
in pa_flist_new_with_name()
103
pa_flist
*l;
in pa_flist_new_with_name()
110
l = pa_xmalloc0(sizeof(
pa_flist
) + sizeof(pa_flist_elem) * size);
in pa_flist_new_with_name()
128
pa_flist
*pa_flist_new(unsigned size) {
in pa_flist_new()
132
void pa_flist_free(
pa_flist
*l, pa_free_cb_t free_cb) {
in pa_flist_free()
146
int pa_flist_push(
pa_flist
*l, void *p) {
in pa_flist_push()
163
void* pa_flist_pop(
pa_flist
*
[all...]
H
A
D
memblock.c
162
pa_flist
*free_slots;
861
pa_flist
*list;
in mempool_free()
925
pa_flist
*list;
in pa_mempool_vacuum()
/third_party/pulseaudio/src/tests/
H
A
D
flist-test.c
35
static
pa_flist
*flist;
Completed in 3 milliseconds