Searched refs:_Py_hashtable_set (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Modules/ |
D | _tracemalloc.c | 347 if (_Py_hashtable_set(tracemalloc_filenames, filename, NULL) < 0) { in tracemalloc_get_frame() 453 if (_Py_hashtable_set(tracemalloc_tracebacks, copy, NULL) < 0) { in traceback_new() 538 if (_Py_hashtable_set(tracemalloc_domains, TO_PTR(domain), traces) < 0) { in tracemalloc_add_trace() 561 int res = _Py_hashtable_set(traces, TO_PTR(ptr), trace); in tracemalloc_add_trace() 1128 if (_Py_hashtable_set(intern_table, traceback, frames) < 0) { in traceback_to_pyobject() 1206 if (_Py_hashtable_set(traces2, key, trace2) < 0) { in tracemalloc_copy_trace() 1244 if (_Py_hashtable_set(domains2, TO_PTR(domain), traces2) < 0) { in tracemalloc_copy_domain()
|
D | _testinternalcapi.c | 153 if (_Py_hashtable_set(table, TO_PTR(key), TO_PTR(value)) < 0) { in test_hashtable()
|
/external/python/cpython3/Include/internal/ |
D | pycore_hashtable.h | 112 PyAPI_FUNC(int) _Py_hashtable_set(
|
/external/python/cpython3/Python/ |
D | hashtable.c | 209 _Py_hashtable_set(_Py_hashtable_t *ht, const void *key, void *value) in _Py_hashtable_set() function
|
D | marshal.c | 323 if (_Py_hashtable_set(p->hashtable, v, (void *)(uintptr_t)w) < 0) { in w_ref()
|