Home
last modified time | relevance | path

Searched refs:put_body_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/platform/cloud/
Dcurl_http_request.cc159 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()
Dcurl_http_request.h177 FILE* put_body_ = nullptr; variable