Home
last modified time | relevance | path

Searched refs:victim (Results 1 – 7 of 7) sorted by relevance

/reactos/dll/3rdparty/libtirpc/src/
H A Dsvc_dg.c447 cache_ptr victim; local
464 if (victim != NULL) {
467 *vicp != NULL && *vicp != victim;
476 newbuf = victim->cache_reply;
479 if (victim == NULL) {
507 victim->cache_replylen = replylen;
512 victim->cache_xid = su->su_xid;
513 victim->cache_proc = uc->uc_proc;
514 victim->cache_vers = uc->uc_vers;
515 victim->cache_prog = uc->uc_prog;
[all …]
/reactos/drivers/filesystems/ext2/src/
H A Drbtree.c368 void rb_replace_node(struct rb_node *victim, struct rb_node *new, in rb_replace_node() argument
371 struct rb_node *parent = rb_parent(victim); in rb_replace_node()
375 if (victim == parent->rb_left) in rb_replace_node()
382 if (victim->rb_left) in rb_replace_node()
383 rb_set_parent(victim->rb_left, new); in rb_replace_node()
384 if (victim->rb_right) in rb_replace_node()
385 rb_set_parent(victim->rb_right, new); in rb_replace_node()
388 *new = *victim; in rb_replace_node()
/reactos/dll/directx/wine/quartz/
H A Dwaveparser.c199 IPin *victim = NULL; in WAVEParserImpl_seek() local
226 IPin_ConnectedTo(This->Parser.ppPins[1], &victim); in WAVEParserImpl_seek()
227 if (victim) in WAVEParserImpl_seek()
229 IPin_NewSegment(victim, newpos, endpos, pPin->dRate); in WAVEParserImpl_seek()
230 IPin_Release(victim); in WAVEParserImpl_seek()
H A Dmpegsplit.c239 IPin *victim; in FillBuffer() local
243 hr = IPin_ConnectedTo(&pOutputPin->pin.pin.IPin_iface, &victim); in FillBuffer()
246 hr = IPin_NewSegment(victim, time, This->Parser.sourceSeeking.llStop, in FillBuffer()
250 IPin_Release(victim); in FillBuffer()
H A Davisplit.c321 IPin *victim; in AVISplitter_Receive() local
325 hr = IPin_ConnectedTo(&pin->pin.pin.IPin_iface, &victim); in AVISplitter_Receive()
328 hr = IPin_NewSegment(victim, start, This->Parser.sourceSeeking.llStop, in AVISplitter_Receive()
332 IPin_Release(victim); in AVISplitter_Receive()
H A Dfiltergraph.c503 IPin *victim = NULL; in FilterGraph2_RemoveFilter() local
505 IPin_ConnectedTo(ppin, &victim); in FilterGraph2_RemoveFilter()
506 if (victim) in FilterGraph2_RemoveFilter()
508 h = IPin_Disconnect(victim); in FilterGraph2_RemoveFilter()
513 IPin_QueryPinInfo(victim, &pinfo); in FilterGraph2_RemoveFilter()
520 h = IPin_Disconnect(victim); in FilterGraph2_RemoveFilter()
523 IPin_Release(victim); in FilterGraph2_RemoveFilter()
641 IPin *victim = NULL; in CheckCircularConnection() local
642 IPin_ConnectedTo(test, &victim); in CheckCircularConnection()
643 if (victim) in CheckCircularConnection()
[all …]
/reactos/drivers/filesystems/ext2/inc/linux/
H A Drbtree.h146 extern void rb_replace_node(struct rb_node *victim, struct rb_node *new,