OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mClosureArray
(Results
1 - 2
of
2
) sorted by null
/system/media/wilhelm/src/
ThreadPool.c
126
tp->
mClosureArray
= tp->mClosureTypical;
128
tp->
mClosureArray
= (Closure **) malloc((maxClosures + 1) * sizeof(Closure *));
129
if (NULL == tp->
mClosureArray
) {
134
tp->mClosureFront = tp->
mClosureArray
;
135
tp->mClosureRear = tp->
mClosureArray
;
196
if (++newFront == &tp->
mClosureArray
[tp->mMaxClosures + 1])
197
newFront = tp->
mClosureArray
;
229
if (tp->mClosureTypical != tp->
mClosureArray
&& NULL != tp->
mClosureArray
) {
230
free(tp->
mClosureArray
);
[
all
...]
ThreadPool.h
62
Closure **
mClosureArray
; ///< The circular buffer of closures
Completed in 484 milliseconds