Home
last modified time | relevance | path

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

/external/volley/src/main/java/com/android/volley/toolbox/
DJsonRequest.java101 return getBodyContentType(); in getPostBodyContentType()
112 public String getBodyContentType() { in getBodyContentType() method in JsonRequest
DHttpClientStack.java126 postRequest.addHeader(HEADER_CONTENT_TYPE, request.getBodyContentType()); in createHttpRequest()
133 putRequest.addHeader(HEADER_CONTENT_TYPE, request.getBodyContentType()); in createHttpRequest()
146 patchRequest.addHeader(HEADER_CONTENT_TYPE, request.getBodyContentType()); in createHttpRequest()
DHurlStack.java298 HttpHeaderParser.HEADER_CONTENT_TYPE, request.getBodyContentType()); in addBody()
/external/volley/src/test/java/com/android/volley/cronet/
DCronetHttpStackTest.java212 public String getBodyContentType() { in curlLogging_textRequest()
247 public String getBodyContentType() { in curlLogging_gzipTextRequest()
288 public String getBodyContentType() { in curlLogging_binaryRequest()
323 public String getBodyContentType() { in curlLogging_largeRequest()
/external/volley/src/main/java/com/android/volley/
DRequest.java409 return getBodyContentType(); in getPostBodyContentType()
462 public String getBodyContentType() { in getBodyContentType() method in Request
/external/volley/src/main/java/com/android/volley/cronet/
DCronetHttpStack.java254 addBodyIfExists(requestParameters, request.getBodyContentType(), request.getBody()); in setHttpMethod()
258 addBodyIfExists(requestParameters, request.getBodyContentType(), request.getBody()); in setHttpMethod()
271 addBodyIfExists(requestParameters, request.getBodyContentType(), request.getBody()); in setHttpMethod()
/external/volley/src/test/java/com/android/volley/toolbox/
DHttpStackConformanceTest.java156 when(mMockRequest.getBodyContentType()).thenReturn("BodyContentType"); in headerPrecedence()