MCPcopy Index your code
hub / github.com/nodejs/node / ReadAsciiString

Method ReadAsciiString

deps/v8/tools/grokdump.py:858–867  ·  view source on GitHub ↗
(self, address)

Source from the content-addressed store, hash-verified

856 return ''.join(ascii_content)
857
858 def ReadAsciiString(self, address):
859 string = ""
860 while self.IsValidAddress(address):
861 code = self.ReadU8(address)
862 if 0 < code < 128:
863 string += chr(code)
864 else:
865 break
866 address += 1
867 return string
868
869 def IsProbableASCIIRegion(self, location, length):
870 ascii_bytes = 0

Callers 3

FindFirstAsciiStringMethod · 0.80
do_display_asciiMethod · 0.80

Calls 2

IsValidAddressMethod · 0.95
ReadU8Method · 0.95

Tested by

no test coverage detected