Home
last modified time | relevance | path

Searched refs:HexDump (Results 1 – 25 of 327) sorted by relevance

12345678910>>...14

/dports/devel/libassa/libassa-3.5.1/utils/
H A Dassa-hexdump.cpp56 class HexDump : class
58 public ASSA::Singleton<HexDump>
61 HexDump ();
78 #define HEXDUMP HexDump::get_instance()
83 ASSA_DECL_SINGLETON(HexDump);
85 HexDump::
86 HexDump () : m_pos_arg_count (0) in HexDump() function in HexDump
108 HexDump::
128 HexDump::
141 HexDump::
/dports/devel/p5-Data-HexDump/Data-HexDump-0.04/t/
H A Ddata.t5 use Data::HexDump;
13 &Check ($t++, HexDump $v x 7,
18 &Check ($t++, HexDump $v x 8,
23 &Check ($t++, HexDump $v x 9,
28 &Check ($t++, HexDump $v x 15,
33 &Check ($t++, HexDump $v x 16,
39 &Check ($t++, HexDump $v x 23,
46 &Check ($t++, HexDump $v x 24,
53 &Check ($t++, HexDump $v x 25,
60 &Check ($t++, HexDump $v x 31,
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/base/
H A Dhex_utils_test.cc12 TEST(HexUtilsTest, HexDump) { in TEST() argument
13 EXPECT_EQ("", HexDump("")); in TEST()
15 HexDump("Hello world!")); in TEST()
19 HexDump("PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n")); in TEST()
22 HexDump("\x20\x21\x7e\x7f")); in TEST()
26 HexDump("\x90\xaa\xff")); in TEST()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/base/
H A Dhex_utils_test.cc12 TEST(HexUtilsTest, HexDump) { in TEST() argument
13 EXPECT_EQ("", HexDump("")); in TEST()
15 HexDump("Hello world!")); in TEST()
19 HexDump("PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n")); in TEST()
22 HexDump("\x20\x21\x7e\x7f")); in TEST()
26 HexDump("\x90\xaa\xff")); in TEST()
/dports/devel/p5-Data-HexDump-Range/Data-HexDump-Range-0.13.59/t/
H A D001_load.t11 BEGIN { use_ok( 'Data::HexDump::Range' ) or BAIL_OUT("Can't load module"); } ;
13 my $object = new Data::HexDump::Range ;
16 isa_ok($object, 'Data::HexDump::Range');
20 isa_ok($new_config , 'Data::HexDump::Range');
24 Data::HexDump::Range::new () ;
H A Dcomment_and_zero_size_range_names.pl8 use Data::HexDump::Range qw() ;
24 my $hdr = Data::HexDump::Range->new(ORIENTATION => 'ver') ;
28 my $hdr2 = Data::HexDump::Range->new(ORIENTATION => 'hor') ;
H A Dsub_as_definition_returning_array_to_flatten_or_string.pl8 use Data::HexDump::Range qw() ;
74 my $hdr = Data::HexDump::Range->new() ;
83 my $hdr2 = Data::HexDump::Range->new(ORIENTATION => 'vertical', DUMP_RANGE_DESCRIPTION => 0) ;
/dports/comms/snap7/snap7-full-1.4.2/examples/dot.net/WinForm/CSharp/CSServer/
H A DMainForm.cs37 HexDump(DB1_Box, DB1, DB1.Length); in MainForm()
38 HexDump(DB2_Box, DB2, DB2.Length); in MainForm()
39 HexDump(DB3_Box, DB3, DB3.Length); in MainForm()
53 private void HexDump(TextBox Box, byte[] bytes, int Size) in HexDump() method in CSServer.MainForm
145 case 1: HexDump(DB1_Box, DB1, DB1.Length); in LogTimer_Tick()
147 case 2: HexDump(DB2_Box, DB2, DB2.Length); in LogTimer_Tick()
149 case 3: HexDump(DB3_Box, DB3, DB3.Length); in LogTimer_Tick()
/dports/devel/p5-Data-HexDump-Range/Data-HexDump-Range-0.13.59/lib/Data/HexDump/
H A DRange.pm2 package Data::HexDump::Range ;
39 use Data::HexDump::Range::Object ;
40 use Data::HexDump::Range::Gather ;
41 use Data::HexDump::Range::Split ;
42 use Data::HexDump::Range::Format ;
/dports/devel/p5-Data-HexDump-Range/Data-HexDump-Range-0.13.59/
H A DMANIFEST10 lib/Data/HexDump/Range.pm
11 lib/Data/HexDump/Range/Gather.pm
12 lib/Data/HexDump/Range/Split.pm
13 lib/Data/HexDump/Range/Format.pm
14 lib/Data/HexDump/Range/Object.pm
H A DMETA.yml19 name: Data-HexDump-Range
21 Data::HexDump::Range:
22 file: lib/Data/HexDump/Range.pm
/dports/devel/p5-Data-HexDump/Data-HexDump-0.04/
H A DMETA.yml14 name: Data-HexDump
24 bugtracker: https://github.com/neilb/Data-HexDump/issues
25 homepage: https://github.com/neilb/Data-HexDump
26 repository: https://github.com/neilb/Data-HexDump.git
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/src/support/
H A Dhexdump.h39 void HexDump(const std::string& s, std::ostream& os);
42 inline std::string HexDump(const std::string& s) { in HexDump() function
44 HexDump(s, ss); in HexDump()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/tests/cpp/
H A Dsupport_test.cc28 TEST(HexDumpTests, Empty) { EXPECT_EQ("", ::tvm::support::HexDump("")); } in TEST()
34 ::tvm::support::HexDump("\x01\x23\x45\x67\x89\xab\xcd\xef\x01\x23\x45\x67\x89\xab\xcd\xef" in TEST()
42 ::tvm::support::HexDump("\x01\x23\x45\x67\x89\xab\xcd\xef\x01\x23\x45\x67\x89\xab\xcd\xef" in TEST()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/common/platform/api/
H A Dquiche_text_utils_test.cc41 TEST_F(QuicheTextUtilsTest, HexDump) { in TEST_F() argument
53 quiche::QuicheTextUtils::HexDump(packet), in TEST_F()
63 quiche::QuicheTextUtils::HexDump(absl::HexStringToBytes("20217e7f"))); in TEST_F()
67 quiche::QuicheTextUtils::HexDump(absl::HexStringToBytes("90aaff"))); in TEST_F()
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/plugins/
H A Ddo_exchain.py35 from winappdbg import HexDump, Table
47 seh = HexDump.address(seh, bits)
49 seh_func = HexDump.address(seh_func, bits)
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/plugins/
H A Ddo_exchain.py35 from winappdbg import HexDump, Table
47 seh = HexDump.address(seh, bits)
49 seh_func = HexDump.address(seh_func, bits)
/dports/devel/py-pydevd/pydevd-1.1.1/pydevd_attach_to_process/winappdbg/plugins/
H A Ddo_exchain.py35 from winappdbg import HexDump, Table
47 seh = HexDump.address(seh, bits)
49 seh_func = HexDump.address(seh_func, bits)
/dports/devel/py-debugpy/debugpy-1.5.1/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/plugins/
H A Ddo_exchain.py35 from winappdbg import HexDump, Table
47 seh = HexDump.address(seh, bits)
49 seh_func = HexDump.address(seh_func, bits)
/dports/devel/py-oletools/oletools-0.54.2/oletools/
H A DDocVarDump.vba39 Write #intFileNum, "Value = " & HexDump(myvar.value)
98 Function HexDump(sText As String)
105 HexDump = ""
109 HexDump = HexDump & Offset & " " & HexBytes(chunk) & " " & ReplaceClean3(chunk) & vbCrLf
115 HexDump = HexDump & Offset & " " & HexBytes(chunk) & " " & ReplaceClean3(chunk) & vbCrLf
/dports/comms/snap7/snap7-full-1.4.2/examples/dot.net/
H A DClient.cs86 static void HexDump(byte[] bytes, int Size) in HexDump() method in ClientDemo
254 HexDump(SZL.Data, Size); in ReadSZL_0011_0000()
277 HexDump(Buffer, Size); in DBGetAndDump()
293 HexDump(Buffer, SampleDBSize); in DBReadAndDump()
310 HexDump(Buffer, Size); in UploadSDB0()
334 HexDump(Buffer, Size); in AsyncUploadCB_SDB0()
352 HexDump(Buffer, Size); in AsyncUploadWC_SDB0()
373 HexDump(Buffer, Size); in AsyncUploadCC_SDB0()
/dports/comms/snap7/snap7-full-1.4.2/examples/dot.net/WinConsole/Client/
H A DClient.cs86 static void HexDump(byte[] bytes, int Size) in HexDump() method in ClientDemo
254 HexDump(SZL.Data, Size); in ReadSZL_0011_0000()
277 HexDump(Buffer, Size); in DBGetAndDump()
293 HexDump(Buffer, SampleDBSize); in DBReadAndDump()
310 HexDump(Buffer, Size); in UploadSDB0()
334 HexDump(Buffer, Size); in AsyncUploadCB_SDB0()
352 HexDump(Buffer, Size); in AsyncUploadWC_SDB0()
373 HexDump(Buffer, Size); in AsyncUploadCC_SDB0()
/dports/devel/p5-Data-HexDump/Data-HexDump-0.04/lib/Data/
H A DHexDump.pm12 package Data::HexDump;
13 $Data::HexDump::VERSION = '0.04';
160 sub HexDump ($) { subroutine
163 my $f = Data::HexDump->new();
/dports/sysutils/android-file-transfer-qt5/android-file-transfer-linux-4.2/mtp/
H A Dlog.cpp27 void HexDump(std::stringstream & ss, const std::string &prefix, size_t size, InputStream & is) in HexDump() function
58 void HexDump(const std::string &prefix, const ByteArray &data, bool force) in HexDump() function
65 HexDump(ss, prefix, data.size(), is); in HexDump()
/dports/sysutils/android-file-transfer/android-file-transfer-linux-4.2/mtp/
H A Dlog.cpp27 void HexDump(std::stringstream & ss, const std::string &prefix, size_t size, InputStream & is) in HexDump() function
58 void HexDump(const std::string &prefix, const ByteArray &data, bool force) in HexDump() function
65 HexDump(ss, prefix, data.size(), is); in HexDump()

12345678910>>...14