/aosp_15_r20/external/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
H A D | bye_unittest.cc | 28 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 D | compound_packet_unittest.cc | 68 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/ |
D | gzappend.c | 93 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 D | callable-references.md | 15 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 D | ArArchiveInputStreamTest.java | 56 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 D | rtc_event_log_unittest_helper.cc | 345 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 D | TestMain.java | 25 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 D | expected-stdout.txt | 4 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 D | rtcp_receiver.cc | 836 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 D | rtcp_transceiver_impl_unittest.cc | 737 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 D | sync.py | 202 def bye(): function 214 bye() 226 bye()
|
/aosp_15_r20/external/mtools/ |
H A D | mkmanpages | 50 -e "/^@node [^,]*, [^,]*, $command, Commands$/,/^@bye/d" \ 51 -e "/^@node [^,]*, [^,]*, Commands/,/^@bye/d" \
|
/aosp_15_r20/external/curl/tests/data/ |
H A D | test1351 | 53 # The final "221 bye bye baby" response to QUIT will not be recorded
|
H A D | test1352 | 53 # The final "221 bye bye baby" response to QUIT will not be recorded
|
H A D | test1350 | 52 # The final "221 bye bye baby" response to QUIT will not be recorded
|
H A D | test1353 | 52 # The final "221 bye bye baby" response to QUIT will not be recorded
|
H A D | test1349 | 52 # The final "221 bye bye baby" response to QUIT will not be recorded
|
/aosp_15_r20/external/python/cpython3/Lib/ |
D | imaplib.py | 959 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/ |
D | imaplib.py | 959 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/ |
D | imaplib.py | 959 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/ |
D | imaplib.py | 959 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 D | imaplib.py | 959 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/ |
D | imaplib.py | 959 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 D | phi-aa.ll | 53 br i1 %targetBlock, label %for.body, label %bye 71 bye:
|
/aosp_15_r20/external/webrtc/examples/objc/AppRTCMobile/ |
H A D | ARDSignalingMessage.m | 63 } else if ([typeString isEqualToString:@"bye"]) { 153 @"type": @"bye"
|