OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:newlink
(Results
1 - 7
of
7
) sorted by null
/external/dropbear/
queue.c
71
struct Link*
newlink
;
local
74
newlink
= (struct Link*)m_malloc(sizeof(struct Link));
76
newlink
->item = item;
77
newlink
->link = NULL;
80
queue->tail->link =
newlink
;
82
queue->tail =
newlink
;
85
queue->head =
newlink
;
/libcore/luni/src/main/java/java/util/
LinkedList.java
92
Link<ET>
newLink
= new Link<ET>(object, link, next);
93
link.next =
newLink
;
94
next.previous =
newLink
;
95
link =
newLink
;
291
Link<E>
newLink
= new Link<E>(object, previous, link);
292
previous.next =
newLink
;
293
link.previous =
newLink
;
315
Link<E>
newLink
= new Link<E>(object, oldLast, voidLink);
316
voidLink.previous =
newLink
;
317
oldLast.next =
newLink
;
[
all
...]
/frameworks/media/libvideoeditor/vss/stagefrightshells/src/
VideoEditorAudioEncoder.cpp
201
MediaBufferChain*
newLink
= new MediaBufferChain;
202
newLink
->buffer = buffer;
203
newLink
->nextLink = NULL;
205
mLastBufferLink->nextLink =
newLink
;
207
mFirstBufferLink =
newLink
;
209
mLastBufferLink =
newLink
;
VideoEditorVideoEncoder.cpp
229
MediaBufferChain*
newLink
= new MediaBufferChain;
230
newLink
->buffer = buffer;
231
newLink
->nextLink = NULL;
233
mLastBufferLink->nextLink =
newLink
;
235
mFirstBufferLink =
newLink
;
237
mLastBufferLink =
newLink
;
[
all
...]
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libc-2.7.so
libc.so.6
/external/libxml2/
xmlschemas.c
[
all
...]
Completed in 161 milliseconds