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

1 2

  /external/bouncycastle/bcprov/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;
  /external/chromium_org/components/proximity_auth/
bluetooth_util_chromeos.cc 84 uint32_t octet; local
85 bool success = base::HexStringToUInt(octets[i], &octet);
87 result->b[i] = base::checked_cast<uint8_t>(octet);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
ethernet.h 128 uint8 octet[ETHER_ADDR_LEN]; member in struct:ether_addr
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralName.java 67 * iPAddress [7] OCTET STRING,
411 int octet = _address[i] & 0xff; local
414 if ((octet < min) || (octet > max)) {
  /external/esd/include/
esd.h 121 typedef unsigned char octet; typedef
  /external/guava/guava/src/com/google/common/net/
InetAddresses.java 355 int octet = Integer.parseInt(ipPart); local
358 if (octet > 255 || (ipPart.startsWith("0") && ipPart.length() > 1)) {
361 return (byte) octet;
    [all...]
  /external/openssl/crypto/pkcs12/
pkcs12.h 132 ASN1_OCTET_STRING *octet; member in union:pkcs12_bag_st::__anon32956
  /external/openssl/include/openssl/
pkcs12.h 132 ASN1_OCTET_STRING *octet; member in union:pkcs12_bag_st::__anon32999
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
esd.h 123 typedef unsigned char octet; typedef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
esd.h 123 typedef unsigned char octet; typedef
  /frameworks/opt/telephony/src/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...]
  /external/smack/src/org/xbill/DNS/
WKSRecord.java 619 int octet = array[i] & 0xFF; local
620 if ((octet & (1 << (7 - j))) != 0) {
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c 1015 ea->octet[i++] = (char) bcm_strtoul(p, &ep, 16);
1063 const uint8 *octet = ea->octet; local
1067 for (i = 0; i < 6; i++, octet++) {
1068 *p++ = hex[(*octet >> 4) & 0xf];
1069 *p++ = hex[*octet & 0xf];
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.h 349 u8 octet[6]; member in struct:__sanitizer::__sanitizer_ether_addr
    [all...]
  /external/robolectric/lib/main/
commons-codec-1.6.jar 
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
commons-io-2.2.jar 

Completed in 816 milliseconds

1 2