Lines Matching defs:socache_info

77     cache_socache_info_t socache_info; /* Header information. */
587 memcpy(&sobj->socache_info, sobj->buffer, sizeof(cache_socache_info_t));
597 info->status = sobj->socache_info.status;
598 info->date = sobj->socache_info.date;
599 info->expire = sobj->socache_info.expire;
600 info->request_time = sobj->socache_info.request_time;
601 info->response_time = sobj->socache_info.response_time;
603 memcpy(&info->control, &sobj->socache_info.control, sizeof(cache_control_t));
605 if (sobj->socache_info.name_len <= buffer_len - slider) {
607 sobj->socache_info.name_len)) {
614 slider += sobj->socache_info.name_len;
623 if (sobj->socache_info.header_only && !r->header_only) {
791 cache_socache_info_t *socache_info;
812 socache_info = (cache_socache_info_t *) sobj->buffer;
877 socache_info->format = CACHE_SOCACHE_DISK_FORMAT_VERSION;
878 socache_info->date = obj->info.date;
879 socache_info->expire = obj->info.expire;
880 socache_info->entity_version = sobj->socache_info.entity_version++;
881 socache_info->request_time = obj->info.request_time;
882 socache_info->response_time = obj->info.response_time;
883 socache_info->status = obj->info.status;
886 socache_info->header_only = 1;
889 socache_info->header_only = sobj->socache_info.header_only;
892 socache_info->name_len = strlen(sobj->name);
894 memcpy(&socache_info->control, &obj->info.control, sizeof(cache_control_t));
897 if (slider + socache_info->name_len >= sobj->buffer_len) {
905 memcpy(sobj->buffer + slider, sobj->name, socache_info->name_len);
906 slider += socache_info->name_len;