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

1 2 3 4 5

  /external/llvm/test/MC/MachO/
tbss.s 3 .tbss _a$tlv$init, 4
4 .tbss _b$tlv$init, 4, 3
67 // CHECK: Name: _a$tlv$init (13)
76 // CHECK: Name: _b$tlv$init (1)
tdata.s 3 _a$tlv$init:
67 // CHECK: Name: _a$tlv$init (1)
tlv.s 3 .tlv
tls.s 5 .globl _c$tlv$init
7 _c$tlv$init:
15 .quad _c$tlv$init
18 .globl _d$tlv$init
20 _d$tlv$init:
28 .quad _d$tlv$init
30 .tbss _a$tlv$init, 4, 2
36 .quad _a$tlv$init
38 .tbss _b$tlv$init, 4, 2
44 .quad _b$tlv$ini
    [all...]
tlv-reloc.s 4 _a$tlv$init:
8 .tlv
13 .quad _a$tlv$init
109 // CHECK: 0x10 0 3 1 X86_64_RELOC_UNSIGNED 0 _a$tlv$init
115 // CHECK: Name: _a$tlv$init (1)
  /external/swiftshader/third_party/LLVM/test/MC/MachO/
tbss.s 3 .tbss _a$tlv$init, 4
4 .tbss _b$tlv$init, 4, 3
70 // CHECK: ('_string_data', '\x00_a$tlv$init\x00_b$tlv$init\x00\x00\x00\x00')
78 // CHECK: ('_string', '_a$tlv$init')
86 // CHECK: ('_string', '_b$tlv$init')
tdata.s 3 _a$tlv$init:
70 // CHECK: ('_string_data', '\x00_a$tlv$init\x00\x00\x00\x00')
78 // CHECK: ('_string', '_a$tlv$init')
tlv.s 3 .tlv
tls.s 5 .globl _c$tlv$init
7 _c$tlv$init:
15 .quad _c$tlv$init
18 .globl _d$tlv$init
20 _d$tlv$init:
28 .quad _d$tlv$init
30 .tbss _a$tlv$init, 4, 2
36 .quad _a$tlv$init
38 .tbss _b$tlv$init, 4, 2
44 .quad _b$tlv$ini
    [all...]
tlv-reloc.s 4 _a$tlv$init:
8 .tlv
13 .quad _a$tlv$init
114 // CHECK: ('_string_data', '\x00_a\x00__tlv_bootstrap\x00_foo\x00_a$tlv$init\x00\x00\x00\x00')
122 // CHECK: ('_string', '_a$tlv$init')
  /external/llvm/test/MC/AsmParser/
directive_tbss.s 3 # CHECK: .tbss _a$tlv$init, 4
4 # CHECK: .tbss _b$tlv$init, 4, 3
6 .tbss _a$tlv$init, 4
7 .tbss _b$tlv$init, 4, 3
directive_tdata.s 4 # CHECK: _a$tlv$init:
8 _a$tlv$init:
directive_tlv.s 8 .tlv
  /external/swiftshader/third_party/LLVM/test/MC/AsmParser/
directive_tbss.s 3 # CHECK: .tbss _a$tlv$init, 4
4 # CHECK: .tbss _b$tlv$init, 4, 3
6 .tbss _a$tlv$init, 4
7 .tbss _b$tlv$init, 4, 3
directive_tdata.s 4 # CHECK: _a$tlv$init:
8 _a$tlv$init:
directive_tlv.s 8 .tlv
  /external/wpa_supplicant_8/src/eap_common/
eap_fast_common.c 51 /* Encapsulate EAP packet in EAP-Payload TLV */
52 wpa_printf(MSG_DEBUG, "EAP-FAST: Add EAP-Payload TLV");
56 "for TLV encapsulation");
148 int eap_fast_parse_tlv(struct eap_fast_tlv_parse *tlv,
153 wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: EAP-Payload TLV",
155 if (tlv->eap_payload_tlv) {
157 "EAP-Payload TLV in the message");
158 tlv->iresult = EAP_TLV_RESULT_FAILURE;
161 tlv->eap_payload_tlv = pos;
162 tlv->eap_payload_tlv_len = len
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/aware/
TlvBufferUtils.java 32 * Utility class to construct and parse byte arrays using the TLV format -
45 * Utility class to construct byte arrays using the TLV format -
70 * Define a TLV constructor with the specified size of the Type (T) and
76 * format rather than the TLV format.
90 * Set the byte array to be used to construct the TLV.
103 * Allocates a new byte array to be used ot construct a TLV.
116 * Creates a TLV array (of the previously specified Type and Length sizes) from the input
120 * @param list A list of fields to be added to the TLV buffer.
121 * @return The constructor of the TLV.
141 * Copies a byte into the TLV with the indicated type. For an L
531 TlvElement tlv = new TlvElement(type, length, mArray, mOffset); local
    [all...]
  /external/kernel-headers/original/uapi/linux/
tipc_config.h 58 * the payload consists of zero or more type/length/value (TLV) items
64 * of an "error string" TLV in the reply message instead of the TLV(s) the
136 * TLV types defined for TIPC
139 #define TIPC_TLV_NONE 0 /* no TLV present */
140 #define TIPC_TLV_VOID 1 /* empty TLV (0 data bytes)*/
220 * The error string TLV is a null-terminated string describing the cause
226 #define TIPC_CFG_TLV_ERROR "\x80" /* request contains incorrect TLV(s) */
234 * A TLV consists of a descriptor, followed by the TLV value
    [all...]
  /external/llvm/test/MC/ARM/
tls-directives.s 27 _b$tlv$init:
35 .long _b$tlv$init
37 .tbss _c$tlv$init, 4, 2 @ @c
43 .long _c$tlv$init
  /frameworks/base/wifi/tests/src/android/net/wifi/aware/
TlvBufferUtilsTest.java 72 * Verify that can build a valid TLV from a List of byte[].
137 for (TlvBufferUtils.TlvElement tlv : tlv22It) {
139 collector.checkThat("tlv22-correct-iteration-mType", tlv.type, equalTo(0));
140 collector.checkThat("tlv22-correct-iteration-mLength", tlv.length, equalTo(4));
141 collector.checkThat("tlv22-correct-iteration-DATA", tlv.getInt(), equalTo(2));
143 collector.checkThat("tlv22-correct-iteration-mType", tlv.type, equalTo(2));
144 collector.checkThat("tlv22-correct-iteration-mLength", tlv.length, equalTo(2));
145 collector.checkThat("tlv22-correct-iteration-DATA", (int) tlv.getShort(),
148 collector.checkThat("tlv22-correct-iteration-mType", tlv.type, equalTo(55));
149 collector.checkThat("tlv22-correct-iteration-mLength", tlv.length, equalTo(0))
    [all...]
  /system/nfc/halimpl/bcm2079x/adaptation/
StartupConfig.cpp 104 ** Description: Adjust a TLV to disable secure element(s). The TLV's type
124 if (tlvType == 0xC2) // this TLV controls secure elements
126 index++; // index of second byte in TLV's value
134 uint8_t tlv[] = {0x04, 0xC2, 0x02, 0x61, 0x00}; local
135 tlv[4] = tlv[4] | bitmask;
136 found0xC2 = append(tlv, 5);
  /external/tcpdump/
print-slow.c 99 { SLOW_OAM_INFO_TYPE_END_OF_TLV, "End of TLV marker" },
142 { SLOW_OAM_LINK_EVENT_END_OF_TLV, "End of TLV marker" },
349 /* did we capture enough for fully decoding the tlv header ? */
354 ND_PRINT((ndo, "\n\t%s TLV (0x%02x), length %u",
373 /* did we capture enough for fully decoding the tlv ? */
478 } tlv; local
510 tlv.slow_oam_info = (const struct slow_oam_info_t *)tptr;
512 if (tlv.slow_oam_info->info_length !=
520 tlv.slow_oam_info->oam_version,
521 EXTRACT_16BITS(&tlv.slow_oam_info->revision)))
    [all...]
print-nflog.c 73 const nflog_tlv_t *tlv; local
97 /* We have some data. Do we have enough for the TLV header? */
104 tlv = (const nflog_tlv_t *) p;
105 size = tlv->tlv_length;
109 /* Is the TLV's length less than the minimum? */
116 /* Do we have enough data for the full TLV? */
123 if (tlv->tlv_type == NFULA_PAYLOAD) {
125 * This TLV's data is the packet payload.
126 * Skip past the TLV header, and break out
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_mixer.c 33 #include <sound/tlv.h>
312 unsigned int *tlv,
321 tlv[0] = -1;
322 tlv[1] = 0;
328 memcpy(xtlv->tlv, tlv, tlv_size);
334 if (xtlv->tlv[1] + 2 * sizeof(unsigned int) > tlv_size) {
338 memcpy(tlv, xtlv->tlv, xtlv->tlv[1] + 2 * sizeof(unsigned int))
398 unsigned int *tlv = NULL; local
527 unsigned int *tlv = NULL; local
696 unsigned int *tlv = NULL; local
    [all...]

Completed in 567 milliseconds

1 2 3 4 5