Lines Matching defs:ret
420 struct http_ssi_state *ret = HTTP_ALLOC_SSI_STATE();
422 if (ret == NULL) {
424 ret = HTTP_ALLOC_SSI_STATE();
427 if (ret != NULL) {
428 memset(ret, 0, sizeof(struct http_ssi_state));
430 return ret;
460 struct http_state *ret = HTTP_ALLOC_HTTP_STATE();
462 if (ret == NULL) {
464 ret = HTTP_ALLOC_HTTP_STATE();
467 if (ret != NULL) {
468 http_state_init(ret);
469 http_add_connection(ret);
471 return ret;