Home
last modified time | relevance | path

Searched refs:bye (Results 1 – 25 of 139) sorted by relevance

123456

/aosp_15_r20/external/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Dbye_unittest.cc28 Bye bye; in TEST() local
29 bye.SetSenderSsrc(kSenderSsrc); in TEST()
31 rtc::Buffer raw = bye.Build(); in TEST()
41 Bye bye; in TEST() local
42 bye.SetSenderSsrc(kSenderSsrc); in TEST()
43 EXPECT_TRUE(bye.SetCsrcs({kCsrc1, kCsrc2})); in TEST()
44 EXPECT_TRUE(bye.reason().empty()); in TEST()
46 rtc::Buffer raw = bye.Build(); in TEST()
56 Bye bye; in TEST() local
59 bye.SetSenderSsrc(kSenderSsrc); in TEST()
[all …]
H A Dcompound_packet_unittest.cc68 auto bye = std::make_unique<Bye>(); in TEST() local
78 root.Append(std::move(bye)); in TEST()
87 EXPECT_EQ(1, parser.bye()->num_packets()); in TEST()
/aosp_15_r20/external/rust/android-crates-io/crates/libz-sys/src/zlib/examples/
Dgzappend.c93 local void bye(char *msg1, char *msg2) in bye() function
185 if (len == -1) bye("error reading ", in->name); in readin()
194 if (readin(in) == 0) bye("unexpected end of ", in->name); in readmore()
211 bye("seeking ", in->name); in skip()
216 bye("unexpected end of ", in->name); in skip()
240 if (read1(in) != 31 || read1(in) != 139) bye(in->name, " not a gzip file"); in gzheader()
241 if (read1(in) != 8) bye("unknown compression method in", in->name); in gzheader()
243 if (flags & 0xe0) bye("unknown header flags set in", in->name); in gzheader()
271 if (gz.fd == -1) bye("cannot open ", name); in gzscan()
273 if (gz.buf == NULL) bye("out of memory", ""); in gzscan()
[all …]
/aosp_15_r20/external/kotlinpoet/docs/
H A Dcallable-references.md15 val byeProperty: MemberName = helloClass.nestedClass("World").member("bye")
20 .addStatement("val bye = %L", byeProperty.reference())
38 val bye = Hello.World::bye
/aosp_15_r20/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/ar/
H A DArArchiveInputStreamTest.java56 final byte[] bye = new byte[4]; in checkLongNameEntry()
57 s.read(bye); in checkLongNameEntry()
58 assertEquals("Bye\n", ArchiveUtils.toAsciiString(bye)); in checkLongNameEntry()
/aosp_15_r20/external/webrtc/logging/rtc_event_log/
H A Drtc_event_log_unittest_helper.cc345 rtcp::Bye bye; in NewBye() local
346 bye.SetSenderSsrc(prng_.Rand<uint32_t>()); in NewBye()
348 bye.SetCsrcs(csrcs); in NewBye()
350 bye.SetReason("foo"); in NewBye()
352 bye.SetReason("bar"); in NewBye()
354 return bye; in NewBye()
458 rtcp::Bye bye = NewBye(); in NewRtcpPacketIncoming() local
459 rtc::Buffer buffer = bye.Build(); in NewRtcpPacketIncoming()
527 rtcp::Bye bye = NewBye(); in NewRtcpPacketOutgoing() local
528 rtc::Buffer buffer = bye.Build(); in NewRtcpPacketOutgoing()
[all …]
/aosp_15_r20/art/test/935-non-retransformable/src-ex/
H A DTestMain.java25 Method bye = Transform.class.getMethod("sayGoodbye"); in runTest() local
28 bye.invoke(t); in runTest()
/aosp_15_r20/art/test/1988-multi-structural-redefine/
H A Dexpected-stdout.txt4 Transform1 says hi and Transform2 says bye!
5 Transform2 says hi and Transform1 says bye!
/aosp_15_r20/external/webrtc/modules/rtp_rtcp/source/
H A Drtcp_receiver.cc836 rtcp::Bye bye; in HandleBye() local
837 if (!bye.Parse(rtcp_block)) { in HandleBye()
843 rtts_.erase(bye.sender_ssrc()); in HandleBye()
845 return elem.second.report_block().sender_ssrc == bye.sender_ssrc(); in HandleBye()
848 TmmbrInformation* tmmbr_info = GetTmmbrInformation(bye.sender_ssrc()); in HandleBye()
852 last_fir_.erase(bye.sender_ssrc()); in HandleBye()
853 auto it = received_rrtrs_ssrc_it_.find(bye.sender_ssrc()); in HandleBye()
H A Drtcp_transceiver_impl_unittest.cc737 Bye bye; in TEST_F() local
738 bye.SetSenderSsrc(kRemoteSsrc1); in TEST_F()
739 auto raw_packet = bye.Build(); in TEST_F()
810 auto bye = std::make_unique<Bye>(); in TEST_F() local
811 bye->SetSenderSsrc(kRemoteSsrc); in TEST_F()
812 compound.Append(std::move(bye)); in TEST_F()
831 auto bye = std::make_unique<Bye>(); in TEST_F() local
832 bye->SetSenderSsrc(kRemoteSsrc); in TEST_F()
833 compound.Append(std::move(bye)); in TEST_F()
/aosp_15_r20/external/libkmsxx/py/tests/
H A Dsync.py202 def bye(): function
214 bye()
226 bye()
/aosp_15_r20/external/mtools/
H A Dmkmanpages50 -e "/^@node [^,]*, [^,]*, $command, Commands$/,/^@bye/d" \
51 -e "/^@node [^,]*, [^,]*, Commands/,/^@bye/d" \
/aosp_15_r20/external/curl/tests/data/
H A Dtest135153 # The final "221 bye bye baby" response to QUIT will not be recorded
H A Dtest135253 # The final "221 bye bye baby" response to QUIT will not be recorded
H A Dtest135052 # The final "221 bye bye baby" response to QUIT will not be recorded
H A Dtest135352 # The final "221 bye bye baby" response to QUIT will not be recorded
H A Dtest134952 # The final "221 bye bye baby" response to QUIT will not be recorded
/aosp_15_r20/external/python/cpython3/Lib/
Dimaplib.py959 bye = self.untagged_responses.get('BYE')
960 if bye:
961 raise self.abort(bye[-1].decode(self._encoding, 'replace'))
1158 bye = self.untagged_responses.pop(typ, None)
1159 if bye is not None:
1161 return (typ, bye)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dimaplib.py959 bye = self.untagged_responses.get('BYE')
960 if bye:
961 raise self.abort(bye[-1].decode(self._encoding, 'replace'))
1158 bye = self.untagged_responses.pop(typ, None)
1159 if bye is not None:
1161 return (typ, bye)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dimaplib.py959 bye = self.untagged_responses.get('BYE')
960 if bye:
961 raise self.abort(bye[-1].decode(self._encoding, 'replace'))
1158 bye = self.untagged_responses.pop(typ, None)
1159 if bye is not None:
1161 return (typ, bye)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/
Dimaplib.py959 bye = self.untagged_responses.get('BYE')
960 if bye:
961 raise self.abort(bye[-1].decode(self._encoding, 'replace'))
1158 bye = self.untagged_responses.pop(typ, None)
1159 if bye is not None:
1161 return (typ, bye)
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dimaplib.py959 bye = self.untagged_responses.get('BYE')
960 if bye:
961 raise self.abort(bye[-1].decode(self._encoding, 'replace'))
1158 bye = self.untagged_responses.pop(typ, None)
1159 if bye is not None:
1161 return (typ, bye)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dimaplib.py959 bye = self.untagged_responses.get('BYE')
960 if bye:
961 raise self.abort(bye[-1].decode(self._encoding, 'replace'))
1158 bye = self.untagged_responses.pop(typ, None)
1159 if bye is not None:
1161 return (typ, bye)
/aosp_15_r20/external/llvm/test/Analysis/BasicAA/
H A Dphi-aa.ll53 br i1 %targetBlock, label %for.body, label %bye
71 bye:
/aosp_15_r20/external/webrtc/examples/objc/AppRTCMobile/
H A DARDSignalingMessage.m63 } else if ([typeString isEqualToString:@"bye"]) {
153 @"type": @"bye"

123456