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

1 2 3 4

  /external/ipsec-tools/src/racoon/
prsa_tok.l 50 octet (([01]?{digit}?{digit})|((2([0-4]{digit}))|(25[0-5])))
51 addr4 {octet}\.{octet}\.{octet}\.{octet}
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
IPAddress.java 49 int octet; local
65 octet = Integer.parseInt(temp.substring(start, pos));
71 if (octet < 0 || octet > 255)
131 int octet; local
163 octet = Integer.parseInt(temp.substring(start, pos), 16);
169 if (octet < 0 || octet > 0xffff)
  /external/autotest/client/bin/
test_config.py 161 octet = "([0-9]{1,2}|1[0-9]{2}|2[0-4][0-9]|25[0-5])"
162 pattern = "^" + octet1 + "\.(" + octet + "\.){2}" + octet + "$"
  /external/srtp/crypto/test/
datatypes_driver.c 158 b.octet[i] = i;
160 c.octet[i] = i;
162 d.octet[i] = i;
232 printf("as octet string: %s\n",
235 printf("bswapped octet string: %s\n",
  /external/wpa_supplicant_8/src/tls/
asn1.c 76 /* Short form - length 0..127 in one octet */
117 * The first octet encodes the first two object
177 static u8 rotate_bits(u8 octet)
185 if (octet & 1)
187 octet >>= 1;
  /external/autotest/client/cros/tendo/n_faced_peerd/
service.py 88 dbus_ip = dbus.Array([dbus.Byte(int(octet))
89 for octet in self.ip_info.addr.split('.')])
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
fill.d 18 # tic4x has 4 octet bytes
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
MOTree.java 238 int octet = in.read(); local
239 if (octet < 0) {
241 } else if (octet > ' ') {
242 tree.append((char) octet);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
MOTree.java 242 int octet = in.read(); local
243 if (octet < 0) {
245 } else if (octet > ' ') {
246 tree.append((char) octet);
  /external/netperf/src/missing/
getaddrinfo.c 286 int octet; local
291 for (j = 0, octet = 0; '0' <= *s && *s <= '9' && j < 3; s++, j++)
292 octet = octet * 10 + (*s - '0');
293 if (j == 0 || octet > 255 || *s != delimiters[i])
  /external/chromium-trace/catapult/third_party/webapp2/tests/
request_test.py 26 Content-type: application/octet-stream
273 self.assertEqual(bar.type, 'application/octet-stream')
300 self.assertEqual(fieldStorage.type, 'application/octet-stream')
304 self.assertEqual(fieldStorage.type, 'application/octet-stream')
309 self.assertEqual(fieldStorage.type, 'application/octet-stream')
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 712 #define ETHERP_TO_MACF(ea) ((struct ether_addr *) (ea))->octet[0], \
713 ((struct ether_addr *) (ea))->octet[1], \
714 ((struct ether_addr *) (ea))->octet[2], \
715 ((struct ether_addr *) (ea))->octet[3], \
716 ((struct ether_addr *) (ea))->octet[4], \
717 ((struct ether_addr *) (ea))->octet[5]
719 #define ETHER_TO_MACF(ea) (ea).octet[0], \
720 (ea).octet[1], \
721 (ea).octet[2], \
722 (ea).octet[3],
    [all...]
  /external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java 589 * Returns whether or not the <code>octet</code> is in the base 64 alphabet.
591 * @param octet
596 public static boolean isBase64(byte octet) {
597 return octet == PAD || (octet >= 0 && octet < DECODE_TABLE.length && DECODE_TABLE[octet] != -1);
    [all...]
  /external/avahi/avahi-compat-howl/include/corby/
buffer.h 73 sw_uint8 octet,
85 sw_uint8 * octet,
  /frameworks/base/packages/Osu/src/com/android/anqp/
Constants.java 182 for (byte octet : octets) {
183 value = (value << Byte.SIZE) | (octet & BYTE_MASK);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
Constants.java 182 for (byte octet : octets) {
183 value = (value << Byte.SIZE) | (octet & BYTE_MASK);
GEOLocationElement.java 202 int octet = mBitoffset >>> 3;
208 value = (value << width) | getBits(mOctets[octet], sbit, width);
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
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...]
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
PduHeaders.java 333 * Get octet value by header field.
336 * @return the octet value of the pdu header
341 Integer octet = (Integer) mHeaderMap.get(field); local
342 if (null == octet) {
346 return octet;
350 * Set octet value to pdu header by header field.
376 throw new InvalidHeaderValueException("Invalid Octet value!");
383 throw new InvalidHeaderValueException("Invalid Octet value!");
390 throw new InvalidHeaderValueException("Invalid Octet value!");
396 throw new InvalidHeaderValueException("Invalid Octet value!")
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduHeaders.java 353 * Get octet value by header field.
356 * @return the octet value of the pdu header
361 Integer octet = (Integer) mHeaderMap.get(field); local
362 if (null == octet) {
366 return octet;
370 * Set octet value to pdu header by header field.
396 throw new InvalidHeaderValueException("Invalid Octet value!");
403 throw new InvalidHeaderValueException("Invalid Octet value!");
410 throw new InvalidHeaderValueException("Invalid Octet value!");
416 throw new InvalidHeaderValueException("Invalid Octet value!")
    [all...]
  /external/esd/include/
esd.h 121 typedef unsigned char octet; typedef
  /external/vboot_reference/scripts/
genpadding.sh 73 * PS: octet string consisting of {Length(RSA Key) - Length(T) - 3} 0xFF
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
ethernet.h 128 uint8 octet[ETHER_ADDR_LEN]; member in struct:ether_addr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
esd.h 123 typedef unsigned char octet; typedef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
esd.h 123 typedef unsigned char octet; typedef

Completed in 2008 milliseconds

1 2 3 4