HomeSort by relevance Sort by last modified time
    Searched full:dbus_malloc (Results 1 - 25 of 26) sorted by null

1 2

  /external/dbus/dbus/
dbus-memory.h 41 DBUS_MALLOC
43 void* dbus_malloc (size_t bytes);
46 DBUS_MALLOC
51 DBUS_MALLOC
58 #define dbus_new(type, count) ((type*)dbus_malloc (sizeof (type) * (count)))
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
136 _dbus_verbose ("Will fail dbus_malloc every %d times\n", fail_nth);
149 _dbus_verbose ("Will use dbus_malloc guards\n");
161 _dbus_verbose ("Will backtrace on failing a dbus_malloc\n");
453 * dbus_malloc() memory is NOT safe to free with regular free() from
460 dbus_malloc (size_t bytes) function
590 * Resizes a block of memory previously allocated by dbus_malloc() or
694 * Frees a block of memory previously allocated by dbus_malloc() o
    [all...]
dbus-macros.h 78 #define DBUS_MALLOC __attribute__((__malloc__))
80 #define DBUS_MALLOC
dbus-test.c 47 _dbus_warn ("%d dbus_malloc blocks were not freed\n",
dbus-mempool.c 235 block = dbus_malloc (alloc_size);
311 block = dbus_malloc (alloc_size);
479 to_free[j] = dbus_malloc (size);
dbus-sysdeps.c 128 /* Use system malloc to avoid memleaks that dbus_malloc
159 /* Use system malloc to avoid memleaks that dbus_malloc
dbus-internals.c 578 copy = dbus_malloc (len + 1);
601 copy = dbus_malloc (n_bytes);
dbus-spawn-win.c 418 *new_argv = dbus_malloc ((argc + 1) * sizeof (char *));
460 q = (*new_argv)[i] = dbus_malloc (len + need_dblquotes*2 + 1);
dbus-auth-script.c 195 array[k] = dbus_malloc (j - i + 1);
dbus-mainloop.c 61 /** fd => dbus_malloc'd DBusList ** of references to DBusWatch */
dbus-sysdeps-util-unix.c 814 buf = dbus_malloc (buflen);
dbus-string.c 149 real->str = dbus_malloc (_DBUS_STRING_ALLOCATION_PADDING + allocate_size);
656 *data_return = dbus_malloc (real->len + 1);
    [all...]
dbus-message-util.c 135 _dbus_warn ("%d dbus_malloc blocks were not freed in %s\n",
    [all...]
dbus-sysdeps-win.c 635 retval = dbus_malloc (n);
685 *ppsid = dbus_malloc (sid_length);
    [all...]
dbus-hash.c     [all...]
dbus-sysdeps-unix.c     [all...]
dbus-message.c 490 * dbus_malloc 2.43
    [all...]
  /external/dbus/bus/
test-system.c 48 _dbus_warn ("%d dbus_malloc blocks were not freed\n",
test-launch-helper.c 48 _dbus_warn ("%d dbus_malloc blocks were not freed\n",
test-main.c 50 _dbus_warn ("%d dbus_malloc blocks were not freed\n",
config-loader-expat.c 195 memsuite.malloc_fcn = dbus_malloc;
config-loader-libxml.c 176 dbus_malloc,
desktop-file.c 195 retval = dbus_malloc (end_pos - pos + 1);
selinux.c 88 .func_malloc = dbus_malloc,
  /external/dbus/doc/
dbus-test-plan.xml 206 must be able to handle dbus_malloc returning NULL.
211 nth call to dbus_malloc return NULL, and
213 dbus_malloc call with a request for more than the specified

Completed in 1047 milliseconds

1 2