MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / match

Method match

pydevd_attach_to_process/winappdbg/breakpoint.py:1771–1779  ·  view source on GitHub ↗

Determine if the given memory address lies within the watched buffer. @rtype: bool @return: C{True} if the given memory address lies within the watched buffer, C{False} otherwise.

(self, address)

Source from the content-addressed store, hash-verified

1769 return self.__oneshot
1770
1771 def match(self, address):
1772 """
1773 Determine if the given memory address lies within the watched buffer.
1774
1775 @rtype: bool
1776 @return: C{True} if the given memory address lies within the watched
1777 buffer, C{False} otherwise.
1778 """
1779 return self.__start <= address < self.__end
1780
1781
1782# ==============================================================================

Callers 9

__matchMethod · 0.80
handle_exceptionFunction · 0.80
_ignore_stderr_lineMethod · 0.80
remove_last_matchMethod · 0.80
__call__Method · 0.80
is_patternMethod · 0.80
do_findFunction · 0.80
attr_matchesMethod · 0.80

Calls

no outgoing calls

Tested by 1

_ignore_stderr_lineMethod · 0.64