Searched refs:post_data_sz (Results 1 - 10 of 10) sorted by relevance
| /forgerock/web-agents-v4/source/ |
| H A D | worker.c | 31 if (r->post_data == NULL || r->post_data_sz == 0) { 38 session_list = am_parse_session_xml(r->instance_id, r->post_data, r->post_data_sz);
|
| H A D | net_ops.c | 172 size_t post_sz, post_data_sz; local 187 post_data_sz = am_asprintf(&post_data, 205 "%s", conn->uv.path, conn->uv.host, conn->uv.port, keepalive, post_data_sz, post_data); 264 size_t post_sz, post_data_sz, xml_esc_sz; local 302 post_data_sz = am_asprintf(&post_data, 338 NOTNULL(conn->req_headers), post_data_sz, post_data); 485 size_t post_sz, post_data_sz, token_sz; local 520 post_data_sz = am_asprintf(&post_data, 550 NOTNULL(conn->req_headers), post_data_sz, post_data); 611 size_t post_sz, post_data_sz; local 698 size_t post_sz, post_data_sz; local 986 size_t post_sz, post_data_sz; local 1276 size_t post_sz, post_data_sz; local [all...] |
| H A D | am.h | 273 size_t post_data_sz; member in struct:am_request
|
| H A D | process.c | 376 wd->post_data_sz = r->post_data_sz; 734 if (r->post_data_sz > 5 && memcmp(r->post_data, "LARES=", 6) == 0) { 765 } else if (r->post_data_sz > 0) { 1904 r->post_data_sz = 0; 1946 r->post_data_sz = post_sz; 2070 if (r->post_data_sz > 0) { 2071 size_t post_enc_sz = r->post_data_sz;
|
| H A D | utility.h | 127 size_t post_data_sz; member in struct:notification_worker_data
|
| /forgerock/web-agents-v4/tests/ |
| H A D | test_notifications.c | 95 .post_data_sz = strlen(post_data), 160 .post_data_sz = strlen(post_data), 229 .post_data_sz = strlen(session_notification), 379 .post_data_sz = strlen(session_notification),
|
| /forgerock/web-agents-v4/source/apache/ |
| H A D | agent.c | 428 sr->clength = rq->post_data_sz; 527 if (ISVALID(rq->post_data) && rq->post_data_sz > 0) { 528 size_t data_sz = rq->post_data_sz; 533 rq->post_data_sz); 537 r->clength = rq->post_data_sz; 539 apr_psprintf(r->pool, "%ld", rq->post_data_sz)); 613 rq->post_data_sz = read_bytes;
|
| /forgerock/web-agents-v4/source/varnish/ |
| H A D | agent.c | 399 a = calloc(1, ar->post_data_sz + 1); 405 memcpy(a, ar->post_data, ar->post_data_sz); 507 ar->post_data_sz = total_read; 516 if (ISVALID(ar->post_data) && ar->post_data_sz > 0) { 517 size_t data_sz = ar->post_data_sz; 522 ar->post_data_sz);
|
| /forgerock/web-agents-v4/source/varnish3/ |
| H A D | agent.c | 449 a = calloc(1, ar->post_data_sz + 1); 455 memcpy(a, ar->post_data, ar->post_data_sz); 557 ar->post_data_sz = total_read; 566 if (ISVALID(ar->post_data) && ar->post_data_sz > 0) { 567 size_t data_sz = ar->post_data_sz; 572 ar->post_data_sz);
|
| /forgerock/web-agents-v4/source/iis/ |
| H A D | agent.c | 683 if (ISVALID(rq->post_data) && rq->post_data_sz > 0) { 684 void *body = alloc_request(r, rq->post_data_sz); 686 memcpy(body, rq->post_data, rq->post_data_sz); 687 hr = r->GetRequest()->InsertEntityBody(body, (DWORD) rq->post_data_sz); 738 rq->post_data_sz = read_bytes; 1096 size_t data_sz = rq->post_data_sz; 1156 a = (char *) alloc_request(r, rq->post_data_sz + 1); 1162 memcpy(a, rq->post_data, rq->post_data_sz);
|
Completed in 57 milliseconds