Home
last modified time | relevance | path

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

/external/jetty/src/java/org/eclipse/jetty/server/
DRequest.java229 private MultiPartInputStream _multiPartInputStream; //if the request is a multi-part mime field in Request
1527 _multiPartInputStream = null; in recycle()
2044 return _multiPartInputStream.getPart(name); in getPart()
2053 if (_multiPartInputStream == null) in getParts()
2054 _multiPartInputStream = (MultiPartInputStream)getAttribute(__MULTIPART_INPUT_STREAM); in getParts()
2056 if (_multiPartInputStream == null) in getParts()
2063 _multiPartInputStream = new MultiPartInputStream(getInputStream(), in getParts()
2067 setAttribute(__MULTIPART_INPUT_STREAM, _multiPartInputStream); in getParts()
2069 Collection<Part> parts = _multiPartInputStream.getParts(); //causes parsing in getParts()
2099 return _multiPartInputStream.getParts(); in getParts()