Lines Matching refs:byte_code_cp
193 …def __init__(self, is_func, byte_code_cp, source, source_name, line, column, name, lines, offsets): argument
195 self.byte_code_cp = byte_code_cp
217 % (self.byte_code_cp, self.source_name, self.name, self.line, self.column))
624 breakpoint.function.byte_code_cp,
628 def _send_bytecode_cp(self, byte_code_cp): argument
632 byte_code_cp)
931 byte_code_cp = struct.unpack(self.byte_order + self.cp_format,
934 logging.debug("Byte code cptr received: {0x%x}", byte_code_cp)
944 byte_code_cp,
953 new_function_list[byte_code_cp] = function
961 byte_code_cp = struct.unpack(self.byte_order + self.cp_format,
964 if byte_code_cp in new_function_list:
965 del new_function_list[byte_code_cp]
966 self._send_bytecode_cp(byte_code_cp)
1024 byte_code_cp = struct.unpack(self.byte_order + self.cp_format,
1027 function = self.function_list[byte_code_cp]
1034 del self.function_list[byte_code_cp]
1035 self._send_bytecode_cp(byte_code_cp)
1036 logging.debug("Function {0x%x} byte-code released", byte_code_cp)