Lines Matching +full:int +full:- +full:property
8 This functions the same as `WriteMemory` except a null-terminator is appended
13 if not str[-1] == '\0':
51 return int(self.sbprocess.GetNumThreads())
55 if isinstance(key, int):
57 if -count <= key < count:
85 …threads = property(get_process_thread_list, None, doc='''A read only property that returns a list(…
86 …thread = property(get_threads_access_object, None, doc='''A read only property that returns an obj…
87 …is_alive = property(__get_is_alive__, None, doc='''A read only property that returns a boolean val…
88 …is_running = property(__get_is_running__, None, doc='''A read only property that returns a boolean…
89 …is_stopped = property(__get_is_stopped__, None, doc='''A read only property that returns a boolean…
90 …id = property(GetProcessID, None, doc='''A read only property that returns the process ID as an in…
91 …target = property(GetTarget, None, doc='''A read only property that an lldb object that represents…
92 …num_threads = property(GetNumThreads, None, doc='''A read only property that returns the number of…
93 …selected_thread = property(GetSelectedThread, SetSelectedThread, doc='''A read/write property that…
94 …state = property(GetState, None, doc='''A read only property that returns an lldb enumeration valu…
95 …exit_state = property(GetExitStatus, None, doc='''A read only property that returns an exit status…
96 …exit_description = property(GetExitDescription, None, doc='''A read only property that returns an …
97 …broadcaster = property(GetBroadcaster, None, doc='''A read only property that an lldb object that …