Lines Matching refs:entry
76 # Get the entry, creating it if needed:
78 entry = self.refcount_data[function]
80 entry = self.refcount_data[function] = RCEntry(function)
85 # Update the entry with the new parameter or the result
88 entry.args.append((arg, type, refcount))
90 entry.result_type = type
91 entry.result_refs = refcount
161 entry = self.refcount_data.get(name)
162 if not entry:
164 elif not entry.result_type.endswith("Object*"):
166 if entry.result_refs is None:
168 elif entry.result_refs: