Home | History | Annotate | Download | only in jni

Lines Matching defs:formData

398     WebCore::FormData* formdata = request.httpBody();
400 if (formdata) {
401 // We can use the formdata->flatten() but it will result in two
407 formdata->elements();
488 jPostDataStr, formdata ? formdata->identifier(): 0,
1045 RefPtr<FormData> formData = FormData::create((const void*)bytes, size);
1048 formData->setIdentifier(static_cast<int64_t>(WTF::currentTime() * 1000000.0));
1049 request.setHTTPBody(formData);