Lines Matching refs:entry
342 _Py_hashtable_entry_t *entry;
343 entry = _Py_hashtable_get_entry(tracemalloc_filenames, filename);
344 if (entry != NULL) {
345 filename = (PyObject *)entry->key;
428 _Py_hashtable_entry_t *entry;
442 entry = _Py_hashtable_get_entry(tracemalloc_tracebacks, traceback);
443 if (entry != NULL) {
444 traceback = (traceback_t *)entry->key;
641 This case is very unlikely: a hash entry has just been
642 released, so the hash table should have at least one free entry.