Home
last modified time | relevance | path

Searched refs:object_list (Results 1 – 10 of 10) sorted by relevance

/external/tpm2-tss/src/tss2-fapi/
Difapi_helpers.h135 push_object_to_list(void *object, NODE_OBJECT_T **object_list);
138 append_object_to_list(void *object, NODE_OBJECT_T **object_list);
Difapi_helpers.c848 push_object_to_list(void *object, NODE_OBJECT_T **object_list) in push_object_to_list() argument
853 if (*object_list) in push_object_to_list()
854 first->next = *object_list; in push_object_to_list()
855 *object_list = first; in push_object_to_list()
869 append_object_to_list(void *object, NODE_OBJECT_T **object_list) in append_object_to_list() argument
874 if (!*object_list) { in append_object_to_list()
875 *object_list = last; in append_object_to_list()
878 list = *object_list; in append_object_to_list()
Dfapi_util.c175 push_object_with_size_to_list(void *object, size_t size, NODE_OBJECT_T **object_list) in push_object_with_size_to_list() argument
178 r = push_object_to_list(object, object_list); in push_object_with_size_to_list()
181 (*object_list)->size = size; in push_object_with_size_to_list()
297 pop_object_from_list(FAPI_CONTEXT *context, NODE_OBJECT_T **object_list) in pop_object_from_list() argument
299 return_if_null(*object_list, "Pop from list.", TSS2_FAPI_RC_BAD_REFERENCE); in pop_object_from_list()
301 NODE_OBJECT_T *head = *object_list; in pop_object_from_list()
303 *object_list = next; in pop_object_from_list()
3405 node->next = context->object_list; in ifapi_allocate_object()
3406 context->object_list = node; in ifapi_allocate_object()
3418 NODE_OBJECT_T *node = context->object_list; in ifapi_free_objects()
[all …]
Dfapi_int.h1010 NODE_OBJECT_T *object_list; member
/external/selinux/python/semanage/
Dtest-semanage.py7 object_list = ['login', 'user', 'port', 'module', 'interface', 'node', 'fcontext', 'boolean', 'perm… variable
29 for object in object_list:
64 for object in object_list:
73 for object in object_list:
/external/python/cpython3/Lib/multiprocessing/
Dconnection.py832 def wait(object_list, timeout=None): argument
845 object_list = list(object_list)
852 for o in object_list:
908 return [o for o in object_list if o in ready_objects]
922 def wait(object_list, timeout=None): argument
929 for obj in object_list:
/external/toolchain-utils/binary_search_tool/
Dbisect_driver.py342 with lock_file(os.path.join(population_dir, '_LIST'), 'a') as object_list:
343 object_list.write('%s\n' % full_obj_path)
/external/vulkan-validation-layers/scripts/
Dobject_tracker_generator.py621 object_list = set()
628 object_list.add(item)
629 return object_list
/external/python/cpython3/Doc/library/
Dmultiprocessing.rst2451 .. function:: wait(object_list, timeout=None)
2453 Wait till an object in *object_list* is ready. Returns the list of
2454 those objects in *object_list* which are ready. If *timeout* is a
2459 For both Unix and Windows, an object can appear in *object_list* if
2470 **Unix**: ``wait(object_list, timeout)`` almost equivalent
2471 ``select.select(object_list, [], [], timeout)``. The difference is
2476 **Windows**: An item in *object_list* must either be an integer
/external/tpm2-tss/doc/
Ddoxygen.dox2058 \fn TSS2_RC append_object_to_list(void *object, NODE_OBJECT_T **object_list)
2148 \fn TSS2_RC push_object_to_list(void *object, NODE_OBJECT_T **object_list)
2294 \fn static TSS2_RC pop_object_from_list(FAPI_CONTEXT *context, NODE_OBJECT_T **object_list)
2295 …tatic TSS2_RC push_object_with_size_to_list(void *object, size_t size, NODE_OBJECT_T **object_list)