Home | History | Annotate | Download | only in obex

Lines Matching full:headers

144              * Since we are not sending any headers or returning any headers then
271 // there are 3 bytes operation headers and 3 bytes body headers //
311 * Returns the headers that have been received during the operation.
312 * Modifying the object returned has no effect on the headers that are sent
314 * @return the headers received during this <code>Operation</code>
324 * Specifies the headers that should be sent in the next OBEX message that
326 * @param headers the headers to send in the next message
329 * @throws IllegalArgumentException if <code>headers</code> was not created
331 * @throws NullPointerException if <code>headers</code> is <code>null</code>
333 public void sendHeaders(HeaderSet headers) throws IOException {
339 if (headers == null) {
340 throw new IOException("Headers may not be null");
343 int[] headerList = headers.getHeaderList();
346 mRequestHeader.setHeader(headerList[i], headers.getHeader(headerList[i]));