Lines Matching refs:it

15 get used to it.
27 then it is all destroyed, whereas if you do talloc_free(X) then just X
45 talloc() versus malloc() performance, and it seems that talloc() is
55 The following is a complete guide to the talloc API. Read it all at
66 The returned pointer is itself a talloc context, so you can use it as
81 convenient type to pass to talloc(). Unlike talloc(), it is not type
82 safe (as it returns a void *), so you are on your own for type checking.
94 condition is if the pointer had a destructor attached to it and the
124 which case it will return NULL (each additional reference consumes
129 After creating a reference you can free it in one of the following
134 cause this pointer to be freed if it runs out of parents.
155 sometimes it is useful to have the additional control on which parent
168 The destructor can do anything it wants to, including freeing other
180 If your destructor attempts to talloc_free() the pointer that it is
201 debugging purposes, although it is also possible to set and get the
221 but it takes a string constant, and is much faster. It is extensively
269 off an exiting context, automatically naming it "talloc_new: __location__"
270 where __location__ is the source line it is called from. It is
287 The "context" argument is only used if "ptr" is not NULL, otherwise it
310 The talloc_steal() function returns the pointer that you pass it. It
325 Passing NULL is allowed, but it will only give a meaningful result if
337 Passing NULL is allowed, but it will only give a meaningful result if
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
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
506 except that it provides integer overflow protection for the multiply,
524 realloc() in one call, which is why it is useful to be able to pass
539 This function checks if a pointer has the specified name. If it does
540 then the pointer is returned. It it doesn't then NULL is returned.