~samba-team/talloc/ppa-maverick

« back to all changes in this revision

Viewing changes to talloc.signatures

  • Committer: Jelmer Vernooij
  • Date: 2010-05-06 13:36:58 UTC
  • mfrom: (36.1.12 unstable)
  • Revision ID: jelmer@samba.org-20100506133658-l9k1768b1ww3zh62
Merge unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
char *talloc_asprintf (const void *, const char *, ...);
 
2
char *talloc_asprintf_append (char *, const char *, ...);
 
3
char *talloc_asprintf_append_buffer (char *, const char *, ...);
 
4
char *talloc_strdup (const void *, const char *);
 
5
char *talloc_strdup_append (char *, const char *);
 
6
char *talloc_strdup_append_buffer (char *, const char *);
 
7
char *talloc_strndup (const void *, const char *, size_t);
 
8
char *talloc_strndup_append (char *, const char *, size_t);
 
9
char *talloc_strndup_append_buffer (char *, const char *, size_t);
 
10
char *talloc_vasprintf (const void *, const char *, va_list);
 
11
char *talloc_vasprintf_append (char *, const char *, va_list);
 
12
char *talloc_vasprintf_append_buffer (char *, const char *, va_list);
 
13
const char *talloc_get_name (const void *);
 
14
const char *talloc_parent_name (const void *);
 
15
const char *talloc_set_name (const void *, const char *, ...);
 
16
int _talloc_free (void *, const char *);
 
17
int talloc_increase_ref_count (const void *);
 
18
int talloc_is_parent (const void *, const void *);
 
19
int talloc_unlink (const void *, void *);
 
20
int talloc_version_major (void);
 
21
int talloc_version_minor (void);
 
22
size_t talloc_get_size (const void *);
 
23
size_t talloc_reference_count (const void *);
 
24
size_t talloc_total_blocks (const void *);
 
25
size_t talloc_total_size (const void *);
 
26
void *_talloc (const void *, size_t);
 
27
void *_talloc_array (const void *, size_t, unsigned int, const char *);
 
28
void *_talloc_get_type_abort (const void *, const char *, const char *);
 
29
void *_talloc_memdup (const void *, const void *, size_t, const char *);
 
30
void *_talloc_move (const void *, const void *);
 
31
void *_talloc_realloc (const void *, void *, size_t, const char *);
 
32
void *_talloc_realloc_array (const void *, void *, size_t, unsigned int, const char *);
 
33
void *_talloc_reference_loc (const void *, const void *, const char *);
 
34
void *_talloc_steal_loc (const void *, const void *, const char *);
 
35
void *_talloc_zero (const void *, size_t, const char *);
 
36
void *_talloc_zero_array (const void *, size_t, unsigned int, const char *);
 
37
void *talloc_autofree_context (void);
 
38
void *talloc_check_name (const void *, const char *);
 
39
void *talloc_find_parent_byname (const void *, const char *);
 
40
void *talloc_init (const char *, ...);
 
41
void *talloc_named (const void *, size_t, const char *, ...);
 
42
void *talloc_named_const (const void *, size_t, const char *);
 
43
void *talloc_parent (const void *);
 
44
void *talloc_pool (const void *, size_t);
 
45
void *talloc_realloc_fn (const void *, void *, size_t);
 
46
void *talloc_reparent (const void *, const void *, const void *);
 
47
void _talloc_set_destructor (const void *, int (*) (void *));
 
48
void talloc_disable_null_tracking (void);
 
49
void talloc_enable_leak_report (void);
 
50
void talloc_enable_leak_report_full (void);
 
51
void talloc_enable_null_tracking (void);
 
52
void talloc_enable_null_tracking_no_autofree (void);
 
53
void talloc_free_children (void *);
 
54
void talloc_report (const void *, FILE *);
 
55
void talloc_report_depth_cb (const void *, int, int, void (*) (const void *, int, int, int, void *), void *);
 
56
void talloc_report_depth_file (const void *, int, int, FILE *);
 
57
void talloc_report_full (const void *, FILE *);
 
58
void talloc_set_abort_fn (void (*) (const char *));
 
59
void talloc_set_log_fn (void (*) (const char *));
 
60
void talloc_set_log_stderr (void);
 
61
void talloc_set_name_const (const void *, const char *);
 
62
void talloc_show_parents (const void *, FILE *);