Home | History | Annotate | Download | only in base

Lines Matching refs:proc

86 void HostResolverProc::SetPreviousProc(HostResolverProc* proc) {
89 // Now that we've guaranteed |this| is the last proc in a chain, we can
91 previous_proc_ = (GetLastProc(proc) == this) ? current_previous : proc;
94 void HostResolverProc::SetLastProc(HostResolverProc* proc) {
95 GetLastProc(this)->SetPreviousProc(proc);
99 HostResolverProc* HostResolverProc::GetLastProc(HostResolverProc* proc) {
100 if (proc == NULL)
102 HostResolverProc* last_proc = proc;
109 HostResolverProc* HostResolverProc::SetDefault(HostResolverProc* proc) {
111 default_proc_ = proc;