Lines Matching refs:tbl
522 apr_table_t *tbl;
526 tbl = apr_table_make(p, 10);
528 qs_to_table(buf, tbl, p);
530 if (apr_table_get(tbl, "v") != NULL &&
531 apr_table_get(tbl, "busy") != NULL &&
532 apr_table_get(tbl, "ready") != NULL) {
539 apr_table_get(tbl, "busy"), apr_table_get(tbl, "ready"));
543 if (apr_table_get(tbl, "port") != NULL)
544 port = atoi(apr_table_get(tbl, "port"));
548 s->busy = atoi(apr_table_get(tbl, "busy"));
549 s->ready = atoi(apr_table_get(tbl, "ready"));
736 apr_table_t *tbl;
762 tbl = apr_table_make(r->pool, 10);
763 qs_to_table(buf, tbl, r->pool);
767 if (apr_table_get(tbl, "port") != NULL)
768 hmserver.port = atoi(apr_table_get(tbl, "port"));
769 hmserver.busy = atoi(apr_table_get(tbl, "busy"));
770 hmserver.ready = atoi(apr_table_get(tbl, "ready"));