HomeSort by relevance Sort by last modified time
    Searched refs:LENGTH (Results 51 - 75 of 99) sorted by null

1 23 4

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyleConstants.h 115 TEXT_BOTTOM, TOP, BOTTOM, BASELINE_MIDDLE, LENGTH
  /external/smack/src/org/xbill/DNS/
Message.java 21 /** The maximum length of a message in wire format. */
308 for (int i = 0; i < additional.length; i++)
361 for (int i = 0; i < recs.length; i++) {
429 if (maxLength < Header.LENGTH)
495 * with the specified maximum length. This will generate a truncated
500 * @param maxLength The maximum length of the message.
502 * rendered into the specified length.
548 for (int j = 0; j < records.length; j++) {
602 for (int i = 0; i < sections.length; i++) {
DNSSEC.java 158 for (int i = 0; i < records.length; i++) {
338 out.writeByteArray(b, 1, b.length - 1);
376 int length; field in class:DNSSEC.ECKeyInfo
381 ECKeyInfo(int length, String p_str, String a_str, String b_str,
384 this.length = length;
421 BigInteger x = readBigInteger(in, keyinfo.length);
422 BigInteger y = readBigInteger(in, keyinfo.length);
486 int t = (p.toByteArray().length - 64) / 8;
575 if (dns.length != 1 + DSA_LEN * 2
    [all...]
  /frameworks/base/obex/javax/obex/
ClientOperation.java 111 for (int i = 0; i < headerList.length; i++) {
117 mRequestHeader.mAuthChall = new byte[(header).mAuthChall.length];
119 (header).mAuthChall.length);
123 mRequestHeader.mAuthResp = new byte[(header).mAuthResp.length];
125 (header).mAuthResp.length);
223 * Returns the length of the content which is being provided. E.g. if the
224 * connection is via HTTP, then the value of the content-length header field
226 * @return the content length of the resource that this connection's URL
227 * references, or -1 if the content length is not known
231 Long temp = (Long)mReplyHeader.getHeader(HeaderSet.LENGTH);
    [all...]
ServerOperation.java 155 int length = in.read(); local
156 length = (length << 8) + in.read();
159 * Determine if the packet length is larger than this device can receive
161 if (length > ObexHelper.MAX_PACKET_SIZE_INT) {
169 if (length > 3) {
170 byte[] data = new byte[length - 3];
173 while (bytesReceived != data.length) {
174 bytesReceived += in.read(data, bytesReceived, data.length - bytesReceived);
202 replyHeader.mAuthResp = new byte[requestHeader.mAuthResp.length];
403 int length = mInput.read(); local
    [all...]