Home
last modified time | relevance | path

Searched refs:wire (Results 1 – 25 of 566) sorted by relevance

12345678910>>...23

/external/libxkbcommon/src/x11/
Dkeymap.c131 translate_controls_mask(uint32_t wire) in translate_controls_mask() argument
134 if (wire & XCB_XKB_BOOL_CTRL_REPEAT_KEYS) in translate_controls_mask()
136 if (wire & XCB_XKB_BOOL_CTRL_SLOW_KEYS) in translate_controls_mask()
138 if (wire & XCB_XKB_BOOL_CTRL_BOUNCE_KEYS) in translate_controls_mask()
140 if (wire & XCB_XKB_BOOL_CTRL_STICKY_KEYS) in translate_controls_mask()
142 if (wire & XCB_XKB_BOOL_CTRL_MOUSE_KEYS) in translate_controls_mask()
144 if (wire & XCB_XKB_BOOL_CTRL_MOUSE_KEYS_ACCEL) in translate_controls_mask()
146 if (wire & XCB_XKB_BOOL_CTRL_ACCESS_X_KEYS) in translate_controls_mask()
148 if (wire & XCB_XKB_BOOL_CTRL_ACCESS_X_TIMEOUT_MASK) in translate_controls_mask()
150 if (wire & XCB_XKB_BOOL_CTRL_ACCESS_X_FEEDBACK_MASK) in translate_controls_mask()
[all …]
/external/apache-http/src/org/apache/http/impl/conn/
DLoggingSessionOutputBuffer.java57 private final Wire wire; field in LoggingSessionOutputBuffer
64 public LoggingSessionOutputBuffer(final SessionOutputBuffer out, final Wire wire) { in LoggingSessionOutputBuffer() argument
67 this.wire = wire; in LoggingSessionOutputBuffer()
72 if (this.wire.enabled()) { in write()
73 this.wire.output(b, off, len); in write()
79 if (this.wire.enabled()) { in write()
80 this.wire.output(b); in write()
86 if (this.wire.enabled()) { in write()
87 this.wire.output(b); in write()
97 if (this.wire.enabled()) { in writeLine()
[all …]
DLoggingSessionInputBuffer.java59 private final Wire wire; field in LoggingSessionInputBuffer
66 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) { in LoggingSessionInputBuffer() argument
69 this.wire = wire; in LoggingSessionInputBuffer()
78 if (this.wire.enabled() && l > 0) { in read()
79 this.wire.input(b, off, l); in read()
86 if (this.wire.enabled() && l > 0) { in read()
87 this.wire.input(l); in read()
94 if (this.wire.enabled() && l > 0) { in read()
95 this.wire.input(b, 0, l); in read()
102 if (this.wire.enabled() && s != null) { in readLine()
[all …]
DWire.java58 private void wire(String header, InputStream instream) in wire() method in Wire
97 wire(">> ", outstream); in output()
105 wire("<< ", instream); in input()
113 wire(">> ", new ByteArrayInputStream(b, off, len)); in output()
121 wire("<< ", new ByteArrayInputStream(b, off, len)); in input()
129 wire(">> ", new ByteArrayInputStream(b)); in output()
137 wire("<< ", new ByteArrayInputStream(b)); in input()
/external/golang-protobuf/proto/
Ddecode_test.go32 wire := append(([]byte)(nil), test.wire...)
34 if err := opts.Unmarshal(wire, got); err != nil {
42 if !bytes.Equal(test.wire, wire) {
45 for i := range wire {
46 wire[i] = 0
66 if err := proto.Unmarshal(test.wire, got); err == nil {
84 if err := opts.Unmarshal(test.wire, got); err == nil {
85 …t.Errorf("Unmarshal unexpectedly succeeded\ninput bytes: [%x]\nMessage:\n%v", test.wire, prototext…
97 wire := protopack.Message{
101 if err := proto.Unmarshal(wire, m); err != nil {
[all …]
Dtestmessages_test.go25 wire []byte member
86 wire: protopack.Message{
124 wire: protopack.Message{
161 wire: protopack.Message{
187 wire: protopack.Message{
201 wire: protopack.Message{
220 wire: protopack.Message{
239 wire: protopack.Message{
257 wire: protopack.Message{
286 wire: protopack.Message{
[all …]
Dvalidate_test.go30 Buf: test.wire,
33 t.Errorf("Validate(%x) = %v, want %v", test.wire, status, want)
36 t.Errorf("Validate(%x): initialized = %v, want %v", test.wire, got, want)
49 Buf: test.wire,
53 t.Errorf("Validate(%x) = %v, want %v", test.wire, got, want)
Dmessageset_test.go34 wire: protopack.Message{
54 wire: protopack.Message{
73 wire: protopack.Message{
94 wire: protopack.Message{
112 wire: protopack.Message{
136 wire: protopack.Message{
165 wire: protopack.Message{
179 wire: protopack.Message{
192 wire: protopack.Message{
212 wire: protopack.Message{
[all …]
Dnoenforceutf8_test.go36 wire: protopack.Message{
45 wire: protopack.Message{
54 wire: protopack.Message{
64 wire: protopack.Message{
74wire: protopack.Message{protopack.Tag{5, protopack.BytesType}, protopack.String("abc\xff")}.Marsha…
81wire: protopack.Message{protopack.Tag{6, protopack.BytesType}, protopack.String("abc\xff")}.Marsha…
Dencode_test.go34 wire, err := opts.Marshal(want)
40 if size != len(wire) {
41 …arshal disagree: Size(m)=%v; len(Marshal(m))=%v\nMessage:\n%v", size, len(wire), prototext.Format(…
48 if err := uopts.Unmarshal(wire, got); err != nil {
68 wire, err := opts.Marshal(want)
76 if !bytes.Equal(wire, wire2) {
77 t.Fatalf("deterministic marshal returned varying results:\n%v", cmp.Diff(wire, wire2))
84 if err := uopts.Unmarshal(wire, got); err != nil {
/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/cmake/
DCMakeLists.txt95 wire)
162 wire
176 wire
197 wire)
253 wire
281 add_library(wire INTERFACE) target
282 target_link_libraries(wire INTERFACE
289 ../upb/wire/decode.c
290 ../upb/wire/decode_fast.c
291 ../upb/wire/encode.c
[all …]
/external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/hpackjson/
DCase.java34 private String wire; field in Case
47 return ByteString.decodeHex(wire); in getWire()
54 public void setWire(ByteString wire) { in setWire() argument
55 this.wire = wire.hex(); in setWire()
62 result.wire = wire; in clone()
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.9/src/dfa/
Dsparse.rs63 wire::{self, DeserializeError, Endian, SerializeError},
315 wire::NE::write_u16(ntrans, &mut sparse[pos..]); in from_dense()
344 wire::NE::write_u32( in from_dense()
355 pos += wire::write_pattern_id::<wire::NE>( in from_dense()
531 self.to_bytes::<wire::LE>() in to_bytes_little_endian()
572 self.to_bytes::<wire::BE>() in to_bytes_big_endian()
620 self.to_bytes::<wire::NE>() in to_bytes_native_endian()
679 self.write_to::<wire::LE>(dst) in write_to_little_endian()
726 self.write_to::<wire::BE>(dst) in write_to_big_endian()
780 self.write_to::<wire::NE>(dst) in write_to_native_endian()
[all …]
Ddense.rs45 wire::{self, DeserializeError, Endian, SerializeError},
1802 self.to_bytes::<wire::LE>() in to_bytes_little_endian()
1845 self.to_bytes::<wire::BE>() in to_bytes_big_endian()
1895 self.to_bytes::<wire::NE>() in to_bytes_native_endian()
1903 let (mut buf, padding) = wire::alloc_aligned_buffer::<u32>(len); in to_bytes()
1966 self.as_ref().write_to::<wire::LE>(dst) in write_to_little_endian()
2024 self.as_ref().write_to::<wire::BE>(dst) in write_to_big_endian()
2089 self.as_ref().write_to::<wire::NE>(dst) in write_to_native_endian()
2147 wire::write_label_len(LABEL) in write_to_len()
2148 + wire::write_endianness_check_len() in write_to_len()
[all …]
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.9/src/dfa/
Dsparse.rs63 wire::{self, DeserializeError, Endian, SerializeError},
315 wire::NE::write_u16(ntrans, &mut sparse[pos..]); in from_dense()
344 wire::NE::write_u32( in from_dense()
355 pos += wire::write_pattern_id::<wire::NE>( in from_dense()
531 self.to_bytes::<wire::LE>() in to_bytes_little_endian()
572 self.to_bytes::<wire::BE>() in to_bytes_big_endian()
620 self.to_bytes::<wire::NE>() in to_bytes_native_endian()
679 self.write_to::<wire::LE>(dst) in write_to_little_endian()
726 self.write_to::<wire::BE>(dst) in write_to_big_endian()
780 self.write_to::<wire::NE>(dst) in write_to_native_endian()
[all …]
Ddense.rs45 wire::{self, DeserializeError, Endian, SerializeError},
1802 self.to_bytes::<wire::LE>() in to_bytes_little_endian()
1845 self.to_bytes::<wire::BE>() in to_bytes_big_endian()
1895 self.to_bytes::<wire::NE>() in to_bytes_native_endian()
1903 let (mut buf, padding) = wire::alloc_aligned_buffer::<u32>(len); in to_bytes()
1966 self.as_ref().write_to::<wire::LE>(dst) in write_to_little_endian()
2024 self.as_ref().write_to::<wire::BE>(dst) in write_to_big_endian()
2089 self.as_ref().write_to::<wire::NE>(dst) in write_to_native_endian()
2147 wire::write_label_len(LABEL) in write_to_len()
2148 + wire::write_endianness_check_len() in write_to_len()
[all …]
Daccel.rs59 wire::{self, DeserializeError, Endian, SerializeError},
192 wire::try_read_u32_as_usize(slice, "accelerators length")?; in from_bytes_unchecked()
197 let accel_tys_len = wire::add( in from_bytes_unchecked()
198 wire::mul(accel_len, 2, "total number of accelerator accel_tys")?, in from_bytes_unchecked()
202 let accel_tys_bytes_len = wire::mul( in from_bytes_unchecked()
207 wire::check_slice_len(slice, accel_tys_bytes_len, "accelerators")?; in from_bytes_unchecked()
208 wire::check_alignment::<AccelTy>(slice)?; in from_bytes_unchecked()
/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/
DBUILD142 "upb/wire/common.h",
143 "upb/wire/decode.h",
144 "upb/wire/encode.h",
158 ":wire",
283 ":wire",
307 ":wire",
416 ":wire",
449 "upb/wire/decode.h",
450 "upb/wire/decode_fast.h",
451 "upb/wire/encode.h",
[all …]
/external/pigweed/pw_bluetooth_sapphire/fuchsia/bt_hci_virtual/
Dloopback.cc44 auto devfs = fuchsia_driver_framework::wire::DevfsAddArgs::Builder(args_arena) in Initialize()
48 auto args = fuchsia_driver_framework::wire::NodeAddArgs::Builder(args_arena) in Initialize()
106 fuchsia_hardware_bluetooth::wire::SnoopPacket packet; in SendSnoopPacket()
110 fuchsia_hardware_bluetooth::wire::SnoopPacket::WithCommand(obj_view); in SendSnoopPacket()
113 packet = fuchsia_hardware_bluetooth::wire::SnoopPacket::WithAcl(obj_view); in SendSnoopPacket()
116 packet = fuchsia_hardware_bluetooth::wire::SnoopPacket::WithSco(obj_view); in SendSnoopPacket()
120 fuchsia_hardware_bluetooth::wire::SnoopPacket::WithEvent(obj_view); in SendSnoopPacket()
123 packet = fuchsia_hardware_bluetooth::wire::SnoopPacket::WithIso(obj_view); in SendSnoopPacket()
131 fuchsia_hardware_bluetooth::wire::SnoopOnObservePacketRequest request = in SendSnoopPacket()
132 fuchsia_hardware_bluetooth::wire::SnoopOnObservePacketRequest::Builder( in SendSnoopPacket()
[all …]
/external/golang-protobuf/internal/testprotos/legacy/proto3_20160519_a4ab9ec5/
Dtest.pb.go675 …c(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffe…
787 func _Message_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
791 if wire != proto.WireVarint {
798 if wire != proto.WireVarint {
805 if wire != proto.WireVarint {
812 if wire != proto.WireVarint {
819 if wire != proto.WireVarint {
826 if wire != proto.WireVarint {
833 if wire != proto.WireVarint {
840 if wire != proto.WireFixed32 {
[all …]
/external/golang-protobuf/internal/testprotos/legacy/proto3_20160225_2fc053c5/
Dtest.pb.go675 …c(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffe…
787 func _Message_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
791 if wire != proto.WireVarint {
798 if wire != proto.WireVarint {
805 if wire != proto.WireVarint {
812 if wire != proto.WireVarint {
819 if wire != proto.WireVarint {
826 if wire != proto.WireVarint {
833 if wire != proto.WireVarint {
840 if wire != proto.WireFixed32 {
[all …]
/external/pigweed/pw_protobuf/size_report/
DBUILD.gn151 label = "Direct wire-format proto encoder"
156 label = "Generated wrapped wire-format encoder"
173 label = "Direct wire-format proto encoder"
178 label = "Generated wrapped wire-format encoder"
194 label = "Message encoder flash cost (incl. wire-format encoder)"
199 label = "Message encoder flash cost (excl. wire-format encoder)"
211 label = "Full wire-format proto encode/decode library"
/external/golang-protobuf/internal/testprotos/legacy/proto3_20180125_92554152/
Dtest.pb.go928 …c(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffe…
1040 func _Message_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
1044 if wire != proto.WireVarint {
1051 if wire != proto.WireVarint {
1058 if wire != proto.WireVarint {
1065 if wire != proto.WireVarint {
1072 if wire != proto.WireVarint {
1079 if wire != proto.WireVarint {
1086 if wire != proto.WireVarint {
1093 if wire != proto.WireFixed32 {
[all …]
/external/golang-protobuf/internal/testprotos/legacy/proto3_20180430_b4deda09/
Dtest.pb.go966 …c(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffe…
1078 func _Message_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
1082 if wire != proto.WireVarint {
1089 if wire != proto.WireVarint {
1096 if wire != proto.WireVarint {
1103 if wire != proto.WireVarint {
1110 if wire != proto.WireVarint {
1117 if wire != proto.WireVarint {
1124 if wire != proto.WireVarint {
1131 if wire != proto.WireFixed32 {
[all …]
/external/golang-protobuf/internal/testprotos/legacy/proto3_20180814_aa810b61/
Dtest.pb.go1008 …c(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffe…
1120 func _Message_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
1124 if wire != proto.WireVarint {
1131 if wire != proto.WireVarint {
1138 if wire != proto.WireVarint {
1145 if wire != proto.WireVarint {
1152 if wire != proto.WireVarint {
1159 if wire != proto.WireVarint {
1166 if wire != proto.WireVarint {
1173 if wire != proto.WireFixed32 {
[all …]

12345678910>>...23