Lines Matching refs:function

80 The function talloc_size() should be used when you don't have a
88 The talloc_free() function frees a piece of talloc memory, and all its
119 The talloc_reference() function makes "context" an additional parent
127 If "ptr" is NULL, then the function is a no-op, and simply returns NULL.
146 The talloc_unlink() function removes a specific parent from ptr. The
151 then this function will fail and will return -1. Likewise, if "ptr"
152 is NULL, then the function will make no modifications and return -1.
162 The function talloc_set_destructor() sets the "destructor" for the
163 pointer "ptr". A destructor is a function that is called when the
189 The talloc_increase_ref_count(ptr) function is exactly equivalent to:
208 The talloc_set_name() function allocates memory as a child of the
220 The function talloc_set_name_const() is just like talloc_set_name(),
224 This function does not allocate any memory. It just copies the
233 The talloc_named() function creates a named talloc pointer. It is
259 This function creates a zero length named talloc context as a top
298 the talloc_realloc_size() function is useful when the type is not
305 The talloc_steal() function changes the parent context of a talloc
310 The talloc_steal() function returns the pointer that you pass it. It
322 The talloc_total_size() function returns the total size in bytes used
333 The talloc_total_blocks() function returns the total memory block
345 The talloc_report() function prints a summary report of all memory
376 For it to be useful, this function must be called before any other
377 talloc function as it establishes a "null context" that acts as the
378 top of the tree. If you don't call this function first then passing
401 For it to be useful, this function must be called before any other
402 talloc function as it establishes a "null context" that acts as the
403 top of the tree. If you don't call this function first then passing
439 The talloc_zero_size() function is useful when you don't have a known type
445 The talloc_memdup() function is equivalent to:
454 The talloc_strdup() function is equivalent to:
466 The talloc_strndup() function is the talloc equivalent of the C
467 library function strndup()
477 The talloc_vasprintf() function is the talloc equivalent of the C
478 library function vasprintf()
484 The talloc_asprintf() function is the talloc equivalent of the C
485 library function asprintf()
495 The talloc_asprintf_append() function appends the given formatted
513 The talloc_array_size() function is useful when the type is not
522 as libraries sometimes want a ralloc function pointer. A realloc()
525 around a single function pointer.
531 This is a handy utility function that returns a talloc context
539 This function checks if a pointer has the specified name. If it does
566 This function lets you know the amount of memory alloced so far by