HomeSort by relevance Sort by last modified time
    Searched refs:dbus_malloc (Results 1 - 17 of 17) sorted by null

  /external/dbus/dbus/
dbus-memory.h 41 void* dbus_malloc (size_t bytes);
50 #define dbus_new(type, count) ((type*)dbus_malloc (sizeof (type) * (count)))
dbus-mempool.c 230 block = dbus_malloc (alloc_size);
302 block = dbus_malloc (alloc_size);
422 to_free[j] = dbus_malloc (size);
dbus-memory.c 34 * @brief dbus_malloc(), dbus_free(), etc.
44 * @brief internals of dbus_malloc() etc.
59 * Safe macro for using dbus_malloc(). Accepts the type
445 * dbus_malloc() memory is NOT safe to free with regular free() from
452 dbus_malloc (size_t bytes) function
546 * Resizes a block of memory previously allocated by dbus_malloc() or
623 * Frees a block of memory previously allocated by dbus_malloc() or
834 p = dbus_malloc (4);
dbus-internals.c 516 copy = dbus_malloc (len + 1);
539 copy = dbus_malloc (n_bytes);
dbus-spawn-win.c 392 *new_argv = dbus_malloc ((argc + 1) * sizeof (char *));
434 q = (*new_argv)[i] = dbus_malloc (len + need_dblquotes*2 + 1);