Searched refs:put_body_ (Results 1 – 2 of 2) sorted by relevance
159 if (put_body_) { in ~CurlHttpRequest()160 fclose(put_body_); in ~CurlHttpRequest()230 if (put_body_) { in SetPutFromFile()231 fclose(put_body_); in SetPutFromFile()233 put_body_ = fopen(body_filepath.c_str(), "r"); in SetPutFromFile()234 if (!put_body_) { in SetPutFromFile()238 fseek(put_body_, 0, SEEK_END); in SetPutFromFile()239 const auto size = ftell(put_body_) - offset; in SetPutFromFile()240 fseek(put_body_, offset, SEEK_SET); in SetPutFromFile()246 reinterpret_cast<void*>(put_body_))); in SetPutFromFile()
177 FILE* put_body_ = nullptr; variable