Home
last modified time | relevance | path

Searched refs:chunk_type (Results 1 – 19 of 19) sorted by relevance

/external/iptables/extensions/
Dlibxt_sctp.c93 unsigned int chunk_type; member
99 = { { .name = "DATA", .chunk_type = 0, .valid_flags = "----IUBE"},
100 { .name = "INIT", .chunk_type = 1, .valid_flags = "--------"},
101 { .name = "INIT_ACK", .chunk_type = 2, .valid_flags = "--------"},
102 { .name = "SACK", .chunk_type = 3, .valid_flags = "--------"},
103 { .name = "HEARTBEAT", .chunk_type = 4, .valid_flags = "--------"},
104 { .name = "HEARTBEAT_ACK", .chunk_type = 5, .valid_flags = "--------"},
105 { .name = "ABORT", .chunk_type = 6, .valid_flags = "-------T"},
106 { .name = "SHUTDOWN", .chunk_type = 7, .valid_flags = "--------"},
107 { .name = "SHUTDOWN_ACK", .chunk_type = 8, .valid_flags = "--------"},
[all …]
/external/tensorflow/tensorflow/core/debug/
Dbfc_dump_reader.cc51 MemoryDump FilterByChunkType(MemoryDump md, const char chunk_type) { in FilterByChunkType() argument
52 if (chunk_type == 'A' || (chunk_type != 'U' && chunk_type != 'F')) { in FilterByChunkType()
61 if ((chunk_type == 'U' && it.in_use()) || in FilterByChunkType()
62 (chunk_type == 'F' && !it.in_use())) { in FilterByChunkType()
236 std::string chunk_type = "A"; in main() local
256 tensorflow::Flag("chunk_type", &chunk_type, in main()
270 if (chunk_type != "A") { in main()
271 md = FilterByChunkType(md, chunk_type[0]); in main()
/external/crosvm/disk/src/
Dandroid_sparse.rs74 chunk_type: Le16, /* 0xCAC1 -> raw; 0xCAC2 -> fill; 0xCAC3 -> don't care */ field
117 let chunk = match chunk_header.chunk_type.to_native() { in parse_chunk()
344 chunk_type: CHUNK_TYPE_RAW.into(), in parse_raw()
367 chunk_type: CHUNK_TYPE_DONT_CARE.into(), in parse_dont_care()
387 chunk_type: CHUNK_TYPE_FILL.into(), in parse_fill()
410 chunk_type: CHUNK_TYPE_CRC32.into(), in parse_crc32()
/external/usrsctp/usrsctplib/netinet/
Dsctp_input.c1180 sctp_process_unrecog_chunk(struct sctp_tcb *stcb, uint8_t chunk_type) in sctp_process_unrecog_chunk() argument
1182 switch (chunk_type) { in sctp_process_unrecog_chunk()
1194 chunk_type, chunk_type); in sctp_process_unrecog_chunk()
1363 sctp_process_unrecog_chunk(stcb, unrec_chunk->ch.chunk_type); in sctp_handle_error()
1656 if (init_cp->ch.chunk_type != SCTP_INITIATION) { in sctp_process_cookie_existing()
1671 if (initack_cp->ch.chunk_type != SCTP_INITIATION_ACK) { in sctp_process_cookie_existing()
2207 if (init_cp->ch.chunk_type != SCTP_INITIATION) {
2224 if (initack_cp->ch.chunk_type != SCTP_INITIATION_ACK) {
3477 switch (desc->chunk_type) {
3974 fwdtsn.ch.chunk_type = SCTP_FORWARD_CUM_TSN;
[all …]
Dsctp_constants.h393 #define IS_SCTP_CONTROL(a) (((a)->chunk_type != SCTP_DATA) && ((a)->chunk_type != SCTP_IDATA))
394 #define IS_SCTP_DATA(a) (((a)->chunk_type == SCTP_DATA) || ((a)->chunk_type == SCTP_IDATA))
Dsctp.h72 uint8_t chunk_type; /* chunk type */ member
Dsctp_header.h434 uint8_t chunk_type; member
Dsctp_output.c5185 init->ch.chunk_type = SCTP_INITIATION;
6385 initack->ch.chunk_type = SCTP_INITIATION_ACK;
8195 dchkh->ch.chunk_type = SCTP_DATA;
8203 ndchkh->ch.chunk_type = SCTP_IDATA;
9579 hdr->chunk_type = SCTP_OPERATION_ERROR;
9649 hdr->chunk_type = SCTP_COOKIE_ECHO;
9703 chdr->chunk_type = SCTP_HEARTBEAT_ACK;
9767 hdr->chunk_type = SCTP_COOKIE_ACK;
9811 ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
9865 shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
[all …]
Dsctp_indata.c2757 (ch->chunk_type == SCTP_DATA)) { in sctp_process_data()
2768 (ch->chunk_type == SCTP_IDATA)) { in sctp_process_data()
2778 if ((ch->chunk_type == SCTP_DATA) || in sctp_process_data()
2779 (ch->chunk_type == SCTP_IDATA)) { in sctp_process_data()
2782 if (ch->chunk_type == SCTP_DATA) { in sctp_process_data()
2796 ch->chunk_type == SCTP_DATA ? "DATA" : "I-DATA", in sctp_process_data()
2813 last_chunk, ch->chunk_type)) { in sctp_process_data()
2829 switch (ch->chunk_type) { in sctp_process_data()
2865 ch->chunk_type); in sctp_process_data()
2889 if (ch->chunk_type & 0x40) { in sctp_process_data()
[all …]
Dsctputil.c4836 switch (ch->chunk_type) {
4899 if (ch->chunk_type == SCTP_ABORT_ASSOCIATION) {
4903 if (ch->chunk_type == SCTP_INITIATION) {
8334 if ((ch->ch.chunk_type != SCTP_INITIATION) ||
8498 uint8_t chunk_type; local
8505 (caddr_t)&chunk_type);
8513 if ((chunk_type != SCTP_INITIATION) ||
Dsctp_asconf.c701 ack_cp->ch.chunk_type = SCTP_ASCONF_ACK; in sctp_handle_asconf()
2654 acp->ch.chunk_type = SCTP_ASCONF; in sctp_compose_asconf()
Dsctp_pcb.c2627 if ((ch->chunk_type == SCTP_INITIATION) ||
2628 (ch->chunk_type == SCTP_INITIATION_ACK)) {
Dsctp_usrreq.c496 if ((ch->ch.chunk_type != SCTP_INITIATION) ||
/external/usrsctp/programs/
Dprograms_helper.h39 uint8_t chunk_type; /* chunk type */ member
/external/avb/
Davbtool.py672 def __init__(self, chunk_type, chunk_offset, output_offset, output_size, argument
687 self.chunk_type = chunk_type
694 if self.chunk_type == self.TYPE_RAW:
699 elif self.chunk_type == self.TYPE_FILL:
704 elif self.chunk_type == self.TYPE_DONT_CARE:
813 (chunk_type, _, chunk_sz, total_sz) = struct.unpack(ImageChunk.FORMAT,
817 if chunk_type == ImageChunk.TYPE_RAW:
830 elif chunk_type == ImageChunk.TYPE_FILL:
841 elif chunk_type == ImageChunk.TYPE_DONT_CARE:
851 elif chunk_type == ImageChunk.TYPE_CRC32:
[all …]
Davbtool672 def __init__(self, chunk_type, chunk_offset, output_offset, output_size, argument
687 self.chunk_type = chunk_type
694 if self.chunk_type == self.TYPE_RAW:
699 elif self.chunk_type == self.TYPE_FILL:
704 elif self.chunk_type == self.TYPE_DONT_CARE:
813 (chunk_type, _, chunk_sz, total_sz) = struct.unpack(ImageChunk.FORMAT,
817 if chunk_type == ImageChunk.TYPE_RAW:
830 elif chunk_type == ImageChunk.TYPE_FILL:
841 elif chunk_type == ImageChunk.TYPE_DONT_CARE:
851 elif chunk_type == ImageChunk.TYPE_CRC32:
[all …]
/external/libpng/contrib/tools/
Dpngfix.c1557 png_uint_32 chunk_type; /* From header */ member
1569 type_message(chunk->file, chunk->chunk_type, message); in chunk_message()
1599 chunk->chunk_type = file->type; in chunk_init()
1621 png_uint_32 type = file->chunk->chunk_type; in current_type()
2086 type_name(zlib->chunk->chunk_type, stderr); in zlib_message()
2120 type_name(zlib->chunk->chunk_type, stdout); in zlib_end()
2145 type_name(zlib->chunk->chunk_type, stdout); in zlib_end()
2856 assert(file->chunk->chunk_type == png_IDAT); in process_chunk()
3253 type = chunk->chunk_type; in read_callback()
3289 type = chunk->chunk_type; in read_callback()
/external/sonivox/arm-wt-22k/lib_src/
Deas_mdls.c469 uint32_t chunk_type; in DLSParser() local
499 …if ((result = EAS_HWReadFile(dls.hwInstData, dls.fileHandle, &chunk_type, sizeof(chunk_type), &siz… in DLSParser()
503 dls.bigEndian = (chunk_type == CHUNK_RIFF); in DLSParser()
/external/usrsctp/usrsctplib/netinet6/
Dsctp6_usrreq.c548 uint8_t chunk_type; local
554 (caddr_t)&chunk_type);
561 if ((chunk_type != SCTP_INITIATION) ||