Home
last modified time | relevance | path

Searched refs:boundary_ (Results 1 – 7 of 7) sorted by relevance

/external/libbrillo/brillo/http/
Dhttp_form_data.cc124 boundary_{boundary} {
125 if (boundary_.empty())
126 boundary_ = base::StringPrintf("%016" PRIx64, base::RandUint64());
149 for (auto ch : boundary_) { in GetContentType()
157 content_type_.c_str(), boundary_.c_str()); in GetContentType()
191 return base::StringPrintf("--%s\r\n", boundary_.c_str()); in GetBoundaryStart()
195 return base::StringPrintf("--%s--\r\n", boundary_.c_str()); in GetBoundaryEnd()
Dhttp_form_data.h183 const std::string& GetBoundary() const { return boundary_; } in GetBoundary()
191 std::string boundary_; // Boundary string used as field separator. variable
/external/dynamic_depth/internal/dynamic_depth/
Dplane.cc59 plane->boundary_ = boundary; in FromData()
87 const std::vector<float>& Plane::GetBoundary() const { return boundary_; } in GetBoundary()
111 if (!boundary_.empty()) { in Serialize()
113 if (!EncodeFloatArrayBase64(boundary_, &base64_encoded_boundary)) { in Serialize()
167 boundary_ = boundary; in ParsePlaneFields()
/external/tensorflow/tensorflow/compiler/xla/tools/
Dhlo_extractor.cc49 boundary_(boundary) {} in ExtractionVisitor()
63 if (boundary_ != nullptr && boundary_->count(hlo) > 0) { in DefaultAction()
107 absl::flat_hash_set<const HloInstruction*>* boundary_; member in xla::__anon2ff0d9c50111::ExtractionVisitor
/external/google-breakpad/src/common/mac/
DHTTPMultipartUpload.m117 NSString *form = [NSString stringWithFormat:fmt, boundary_, escaped, value];
128 NSString *pre = [NSString stringWithFormat:fmt, boundary_, escaped];
150 boundary_ = [[self multipartBoundary] retain];
162 [boundary_ release];
211 boundary_] forHTTPHeaderField:@"Content-type"];
240 NSString *epilogue = [NSString stringWithFormat:@"\r\n--%@--\r\n", boundary_];
DHTTPMultipartUpload.h42 NSString *boundary_; // The boundary string (STRONG) variable
/external/dynamic_depth/includes/dynamic_depth/
Dplane.h76 std::vector<float> boundary_; variable