Searched defs:mycandidate (Results 1 - 5 of 5) sorted by relevance

/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_bybusyness.c33 proxy_worker *mycandidate = NULL; local
58 while (!mycandidate && !checked_standby) {
92 if (!mycandidate
93 || (*worker)->s->busy < mycandidate->s->busy
94 || ((*worker)->s->busy == mycandidate->s->busy && (*worker)->s->lbstatus > mycandidate->s->lbstatus))
95 mycandidate = *worker;
107 } while (cur_lbset <= max_lbset && !mycandidate);
109 if (mycandidate) {
110 mycandidate
[all...]
H A Dmod_lbmethod_byrequests.c80 proxy_worker *mycandidate = NULL; local
102 while (!mycandidate && !checked_standby) {
131 if (!mycandidate || (*worker)->s->lbstatus > mycandidate->s->lbstatus)
132 mycandidate = *worker;
138 } while (cur_lbset <= max_lbset && !mycandidate);
140 if (mycandidate) {
141 mycandidate->s->lbstatus -= total_factor;
144 mycandidate->s->name, mycandidate
[all...]
H A Dmod_lbmethod_bytraffic.c52 proxy_worker *mycandidate = NULL; local
74 while (!mycandidate && !checked_standby) {
103 if (!mycandidate || mytraffic < curmin) {
104 mycandidate = *worker;
112 } while (cur_lbset <= max_lbset && !mycandidate);
114 if (mycandidate) {
117 mycandidate->s->name, mycandidate->s->busy);
120 return mycandidate;
H A Dmod_lbmethod_heartbeat.c268 proxy_worker *mycandidate = NULL; local
333 mycandidate = server->worker;
342 return mycandidate;
/httpd/modules/proxy/examples/
H A Dmod_lbmethod_rr.c47 proxy_worker *mycandidate = NULL; local
72 while (!mycandidate && !checked_standby) {
87 mycandidate = *worker;
99 return mycandidate;

Completed in 33 milliseconds