Home | History | Annotate | Download | only in engine

Lines Matching refs:rtrans

21 int CountEntriesWithName(BaseTransaction* rtrans,
25 rtrans->directory()->GetChildHandlesById(rtrans, parent_id, &child_handles);
33 Entry e(rtrans, GET_BY_HANDLE, *i);
42 Id GetFirstEntryWithName(BaseTransaction* rtrans,
46 rtrans->directory()->GetChildHandlesById(rtrans, parent_id, &child_handles);
50 Entry e(rtrans, GET_BY_HANDLE, *i);
61 Id GetOnlyEntryWithName(BaseTransaction* rtrans,
64 CHECK(1 == CountEntriesWithName(rtrans, parent_id, name));
65 return GetFirstEntryWithName(rtrans, parent_id, name);