HomeSort by relevance Sort by last modified time
    Searched refs:octet (Results 26 - 50 of 140) sorted by null

12 3 4 5 6

  /prebuilts/jdk/jdk8/linux-x86/lib/
ir.idl 277 in octet flags, // must be 0
678 attribute octet flags; // always 0
689 octet flags; // always 0
739 octet flags; // always 0
  /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...]
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...]
  /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...]
PduComposer.java 215 * Short-integer = OCTET
216 * ; Integers in range 0-127 shall be encoded as a one octet value
226 * Append an octet number between 128 and 255 into mMessage.
244 * Short-length = <Any octet 0-30>
257 * Long-integer = Short-length Multi-octet-integer
258 * ; The Short-length indicates the length of the Multi-octet-integer
259 * Multi-octet-integer = 1*30 OCTET
261 * ; most significant octet encoded first (big-endian representation).
368 * ending up in the last octet. All octets MUST set the Continue bit to
575 final int octet = mPduHeader.getOctet(field); local
    [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
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
writer_test.go 148 "Un octet correspondant à un caractère imprimable de l'ASCII sauf le signe égal (donc un caractère de code ASCII entre 33 et 60 ou entre 62 et 126) ou aux caractères de saut de ligne (codes ASCII 13 et 10) ou une suite de tabulations et espaces non situées en fin de ligne (de codes ASCII respectifs 9 et 32) est représenté tel quel.\r\n" +
149 "Un octet qui ne correspond pas à la définition ci-dessus (caractère non imprimable de l'ASCII, tabulation ou espaces non suivies d'un caractère imprimable avant la fin de la ligne ou signe égal) est représenté par un signe égal, suivi de son numéro, exprimé en hexadécimal.\r\n" +
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
writer_test.go 148 "Un octet correspondant à un caractère imprimable de l'ASCII sauf le signe égal (donc un caractère de code ASCII entre 33 et 60 ou entre 62 et 126) ou aux caractères de saut de ligne (codes ASCII 13 et 10) ou une suite de tabulations et espaces non situées en fin de ligne (de codes ASCII respectifs 9 et 32) est représenté tel quel.\r\n" +
149 "Un octet qui ne correspond pas à la définition ci-dessus (caractère non imprimable de l'ASCII, tabulation ou espaces non suivies d'un caractère imprimable avant la fin de la ligne ou signe égal) est représenté par un signe égal, suivi de son numéro, exprimé en hexadécimal.\r\n" +
  /external/libvorbis/doc/
02-bitpacking.tex 22 'octet', that is, eight bits. This has not always been the case;
33 octet (eight bits) and a word to be a group of two, four or eight
37 that a byte is one octet for purposes of example.
45 $n$ ($n=7$ in an octet) for the
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/fetch/
fetch.go 63 resp, err := http.Post(source, "application/octet-stream", strings.NewReader(post))
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/fetch/
fetch.go 63 resp, err := http.Post(source, "application/octet-stream", strings.NewReader(post))
  /external/guava/guava/src/com/google/common/net/
InetAddresses.java 300 int octet = Integer.parseInt(ipPart); local
303 if (octet > 255 || (ipPart.startsWith("0") && ipPart.length() > 1)) {
306 return (byte) octet;
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
cookie.go 317 // cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
318 // cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
sniff.go 20 // returns "application/octet-stream".
37 return "application/octet-stream" // fallback
  /prebuilts/go/linux-x86/src/net/http/
cookie.go 317 // cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
318 // cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
  /cts/hostsidetests/security/securityPatch/CVE-2017-0705/
poc.c 192 uint8_t octet[ETHER_ADDR_LEN]; member in struct:_ether_addr
  /prebuilts/go/darwin-x86/src/mime/multipart/
multipart_test.go 694 Content-Type: application/octet-stream
698 {textproto.MIMEHeader{"Content-Type": {`application/octet-stream`}, "Content-Disposition": {`form-data; name="block"; filename="block"`}},
709 Content-Type: application/octet-stream
713 {textproto.MIMEHeader{"Content-Type": {`application/octet-stream`}, "Content-Disposition": {`form-data; name="block"; filename="block"`}},
726 Content-Type: application/octet-stream
730 {textproto.MIMEHeader{"Content-Type": {`application/octet-stream`}, "Content-Disposition": {`form-data; name="block"; filename="block"`}},
747 Content-Type: application/octet-stream
759 {textproto.MIMEHeader{"Content-Type": {`application/octet-stream`}, "Content-Disposition": {`form-data; name="myfile"; filename="my-file.txt"`}},
  /prebuilts/go/darwin-x86/src/net/http/pprof/
pprof.go 103 w.Header().Set("Content-Type", "application/octet-stream")
128 w.Header().Set("Content-Type", "application/octet-stream")
  /prebuilts/go/linux-x86/src/mime/multipart/
multipart_test.go 694 Content-Type: application/octet-stream
698 {textproto.MIMEHeader{"Content-Type": {`application/octet-stream`}, "Content-Disposition": {`form-data; name="block"; filename="block"`}},
709 Content-Type: application/octet-stream
713 {textproto.MIMEHeader{"Content-Type": {`application/octet-stream`}, "Content-Disposition": {`form-data; name="block"; filename="block"`}},
726 Content-Type: application/octet-stream
730 {textproto.MIMEHeader{"Content-Type": {`application/octet-stream`}, "Content-Disposition": {`form-data; name="block"; filename="block"`}},
747 Content-Type: application/octet-stream
759 {textproto.MIMEHeader{"Content-Type": {`application/octet-stream`}, "Content-Disposition": {`form-data; name="myfile"; filename="my-file.txt"`}},
  /prebuilts/go/linux-x86/src/net/http/pprof/
pprof.go 103 w.Header().Set("Content-Type", "application/octet-stream")
128 w.Header().Set("Content-Type", "application/octet-stream")

Completed in 2106 milliseconds

12 3 4 5 6