HomeSort by relevance Sort by last modified time
    Searched defs:dispatch_table (Results 1 - 21 of 21) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
  /external/python/cpython2/Lib/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
  /prebuilts/gdb/darwin-x86/lib/python2.7/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
  /prebuilts/gdb/linux-x86/lib/python2.7/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
copy_reg.py 12 dispatch_table = {} variable
20 dispatch_table[ob_type] = pickle_function
  /external/python/cpython3/Lib/
copyreg.py 10 dispatch_table = {} variable
15 dispatch_table[ob_type] = pickle_function
  /external/vulkan-validation-layers/layers/
unique_objects.h 52 VkLayerInstanceDispatchTable dispatch_table = {}; member in struct:unique_objects::instance_layer_data
67 VkLayerDispatchTable dispatch_table = {}; member in struct:unique_objects::layer_data
object_tracker.h 114 VkLayerDispatchTable dispatch_table; member in struct:object_tracker::layer_data
126 dispatch_table{} {
parameter_validation.h 71 VkLayerInstanceDispatchTable dispatch_table = {}; member in struct:parameter_validation::instance_layer_data
91 VkLayerDispatchTable dispatch_table = {}; member in struct:parameter_validation::layer_data
    [all...]
core_validation.cpp 112 VkLayerInstanceDispatchTable dispatch_table; member in struct:core_validation::instance_layer_data
128 VkLayerDispatchTable dispatch_table; member in struct:core_validation::layer_data
    [all...]
  /external/python/cpython3/Lib/idlelib/
rpc.py 63 dispatch_table = {types.CodeType: pickle_code} variable in class:CodePickler
64 dispatch_table.update(copyreg.dispatch_table)
  /bionic/libc/bionic/
malloc_common.cpp 382 static void* LoadSharedLibrary(const char* shared_lib, const char* prefix, MallocDispatch* dispatch_table) {
408 if (!InitMallocFunctions(impl_handle, dispatch_table, prefix)) {
435 MallocDispatch dispatch_table; local
436 void* impl_handle = LoadSharedLibrary(shared_lib, prefix, &dispatch_table);
448 globals->malloc_dispatch = dispatch_table;
  /external/python/cpython3/Lib/test/
pickletester.py 2833 dispatch_table = dt variable in class:AbstractDispatchTableTests.test_class_dispatch_table.MyPickler
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
parameter_validation.cpp 1593 VkLayerInstanceDispatchTable *dispatch_table = get_dispatch_table(pc_instance_table_map, instance); local
    [all...]
core_validation.cpp 100 VkLayerInstanceDispatchTable dispatch_table; member in struct:core_validation::instance_layer_data
133 VkLayerDispatchTable dispatch_table; member in struct:core_validation::layer_data
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 116 /* copy_reg.dispatch_table, {type_object: pickling_function} */
117 static PyObject *dispatch_table; variable
351 PyObject *dispatch_table; member in struct:Picklerobject
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 116 /* copy_reg.dispatch_table, {type_object: pickling_function} */
117 static PyObject *dispatch_table; variable
353 PyObject *dispatch_table; member in struct:Picklerobject
    [all...]
  /external/python/cpython2/Modules/
cPickle.c 116 /* copy_reg.dispatch_table, {type_object: pickling_function} */
117 static PyObject *dispatch_table; variable
351 PyObject *dispatch_table; member in struct:Picklerobject
    [all...]
  /external/python/cpython3/Modules/
_pickle.c 129 /* copyreg.dispatch_table, {type_object: pickling_function} */
130 PyObject *dispatch_table; member in struct:__anon33343
186 Py_CLEAR(st->dispatch_table);
220 st->dispatch_table = PyObject_GetAttrString(copyreg, "dispatch_table");
221 if (!st->dispatch_table)
223 if (!PyDict_CheckExact(st->dispatch_table)) {
225 "copyreg.dispatch_table should be a dict, not %.200s",
226 Py_TYPE(st->dispatch_table)->tp_name);
548 PyObject *dispatch_table; /* private dispatch_table, can be NULL * member in struct:PicklerObject
    [all...]

Completed in 2414 milliseconds