File: talloc.signatures

package info (click to toggle)
chromium-browser 41.0.2272.118-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,189,132 kB
  • sloc: cpp: 9,691,462; ansic: 3,341,451; python: 712,689; asm: 518,779; xml: 208,926; java: 169,820; sh: 119,353; perl: 68,907; makefile: 28,311; yacc: 13,305; objc: 11,385; tcl: 3,186; cs: 2,225; sql: 2,217; lex: 2,215; lisp: 1,349; pascal: 1,256; awk: 407; ruby: 155; sed: 53; php: 14; exp: 11
file content (62 lines) | stat: -rw-r--r-- 3,367 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
char *talloc_asprintf (const void *, const char *, ...);
char *talloc_asprintf_append (char *, const char *, ...);
char *talloc_asprintf_append_buffer (char *, const char *, ...);
char *talloc_strdup (const void *, const char *);
char *talloc_strdup_append (char *, const char *);
char *talloc_strdup_append_buffer (char *, const char *);
char *talloc_strndup (const void *, const char *, size_t);
char *talloc_strndup_append (char *, const char *, size_t);
char *talloc_strndup_append_buffer (char *, const char *, size_t);
char *talloc_vasprintf (const void *, const char *, va_list);
char *talloc_vasprintf_append (char *, const char *, va_list);
char *talloc_vasprintf_append_buffer (char *, const char *, va_list);
const char *talloc_get_name (const void *);
const char *talloc_parent_name (const void *);
const char *talloc_set_name (const void *, const char *, ...);
int _talloc_free (void *, const char *);
int talloc_increase_ref_count (const void *);
int talloc_is_parent (const void *, const void *);
int talloc_unlink (const void *, void *);
int talloc_version_major (void);
int talloc_version_minor (void);
size_t talloc_get_size (const void *);
size_t talloc_reference_count (const void *);
size_t talloc_total_blocks (const void *);
size_t talloc_total_size (const void *);
void *_talloc (const void *, size_t);
void *_talloc_array (const void *, size_t, unsigned int, const char *);
void *_talloc_get_type_abort (const void *, const char *, const char *);
void *_talloc_memdup (const void *, const void *, size_t, const char *);
void *_talloc_move (const void *, const void *);
void *_talloc_realloc (const void *, void *, size_t, const char *);
void *_talloc_realloc_array (const void *, void *, size_t, unsigned int, const char *);
void *_talloc_reference_loc (const void *, const void *, const char *);
void *_talloc_steal_loc (const void *, const void *, const char *);
void *_talloc_zero (const void *, size_t, const char *);
void *_talloc_zero_array (const void *, size_t, unsigned int, const char *);
void *talloc_autofree_context (void);
void *talloc_check_name (const void *, const char *);
void *talloc_find_parent_byname (const void *, const char *);
void *talloc_init (const char *, ...);
void *talloc_named (const void *, size_t, const char *, ...);
void *talloc_named_const (const void *, size_t, const char *);
void *talloc_parent (const void *);
void *talloc_pool (const void *, size_t);
void *talloc_realloc_fn (const void *, void *, size_t);
void *talloc_reparent (const void *, const void *, const void *);
void _talloc_set_destructor (const void *, int (*) (void *));
void talloc_disable_null_tracking (void);
void talloc_enable_leak_report (void);
void talloc_enable_leak_report_full (void);
void talloc_enable_null_tracking (void);
void talloc_enable_null_tracking_no_autofree (void);
void talloc_free_children (void *);
void talloc_report (const void *, FILE *);
void talloc_report_depth_cb (const void *, int, int, void (*) (const void *, int, int, int, void *), void *);
void talloc_report_depth_file (const void *, int, int, FILE *);
void talloc_report_full (const void *, FILE *);
void talloc_set_abort_fn (void (*) (const char *));
void talloc_set_log_fn (void (*) (const char *));
void talloc_set_log_stderr (void);
void talloc_set_name_const (const void *, const char *);
void talloc_show_parents (const void *, FILE *);