HomeSort by relevance Sort by last modified time
    Searched defs:octet (Results 1 - 16 of 16) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/util/
IPAddress.java 46 int octet; local
62 octet = Integer.parseInt(temp.substring(start, pos));
68 if (octet < 0 || octet > 255)
128 int octet; local
160 octet = Integer.parseInt(temp.substring(start, pos), 16);
166 if (octet < 0 || octet > 0xffff)
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Oid.java 81 int octet = in.buffer[in.contentOffset + i]; local
82 oidElement = octet & 0x7F;
83 while ((octet & 0x80) != 0) {
85 octet = in.buffer[in.contentOffset + i];
86 oidElement = oidElement << 7 | (octet & 0x7f);
138 int octet = in.buffer[in.contentOffset];
139 int element = octet & 0x7F;
142 while ((octet & 0x80) != 0) {
144 octet = in.buffer[in.contentOffset + index];
145 element = element << 7 | (octet & 0x7F)
    [all...]
BerInputStream.java 457 throw new ASN1Exception("Decoding constructed ASN.1 octet string type is not supported");
741 int octet = in.read(); local
742 if (octet == -1) {
746 buffer[offset++] = (byte) octet;
748 return octet;
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionState.java 151 int octet = 7; local
152 while (octet >= 0) {
153 seq_num[octet] ++;
154 if (seq_num[octet] == 0) {
157 octet --;
  /external/bluetooth/bluez/tools/
ubcsp.c 275 /** Outputs a single octet to the uart **/
276 /** If the octet needs to be escaped, then output the escape value **/
277 /** and then store the second octet to be output later **/
283 /* output a single UART octet */
285 /* If it needs to be escaped, then output the escape octet
287 output the second octet for the escape correctly.
302 /* Not escaped, so just output octet */
321 octet, local
329 for (octet = 0; octet < 4; octet ++)
    [all...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/proto/
ethernet.h 100 uint8 octet[ETHER_ADDR_LEN]; member in struct:ether_addr
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
ethernet.h 100 uint8 octet[ETHER_ADDR_LEN]; member in struct:ether_addr
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralName.java 65 * iPAddress [7] OCTET STRING,
399 int octet = _address[i] & 0xff; local
402 if ((octet < min) || (octet > max)) {
  /external/bluetooth/bluez/sbc/
sbc.c 141 uint8_t octet; local
146 octet = data[i];
148 char bit = ((octet ^ crc) & 0x80) >> 7;
152 octet = octet << 1;
  /external/esd/include/
esd.h 121 typedef unsigned char octet; typedef
  /external/openssl/crypto/pkcs12/
pkcs12.h 132 ASN1_OCTET_STRING *octet; member in union:pkcs12_bag_st::__anon8852
  /external/openssl/include/openssl/
pkcs12.h 132 ASN1_OCTET_STRING *octet; member in union:pkcs12_bag_st::__anon8895
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
esd.h 121 typedef unsigned char octet; typedef
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduComposer.java 208 * Short-integer = OCTET
209 * ; Integers in range 0-127 shall be encoded as a one octet value
219 * Append an octet number between 128 and 255 into mMessage.
237 * Short-length = <Any octet 0-30>
250 * Long-integer = Short-length Multi-octet-integer
251 * ; The Short-length indicates the length of the Multi-octet-integer
252 * Multi-octet-integer = 1*30 OCTET
254 * ; most significant octet encoded first (big-endian representation).
361 * ending up in the last octet. All octets MUST set the Continue bit to
567 int octet = mPduHeader.getOctet(field); local
    [all...]
PduHeaders.java 335 * Get octet value by header field.
338 * @return the octet value of the pdu header
343 Integer octet = (Integer) mHeaderMap.get(field); local
344 if (null == octet) {
348 return octet;
352 * Set octet value to pdu header by header field.
378 throw new InvalidHeaderValueException("Invalid Octet value!");
385 throw new InvalidHeaderValueException("Invalid Octet value!");
392 throw new InvalidHeaderValueException("Invalid Octet value!");
398 throw new InvalidHeaderValueException("Invalid Octet value!")
    [all...]
  /prebuilt/common/http-client/
commons-codec-1.4.jar 

Completed in 467 milliseconds