HomeSort by relevance Sort by last modified time
    Searched refs:HChar (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /external/valgrind/main/coregrind/m_initimg/
priv_initimg_pathscan.h 35 extern HChar* ML_(find_executable) ( const HChar* exec );
initimg-pathscan.c 96 static HChar executable_name_in [VKI_PATH_MAX];
97 static HChar executable_name_out[VKI_PATH_MAX];
101 HChar buf[VG_(strlen)(entry) + VG_(strlen)(executable_name_in) + 3];
132 HChar* ML_(find_executable) ( const HChar* exec )
140 HChar* path;
  /external/valgrind/main/coregrind/
pub_core_commandline.h 40 extern void VG_(split_up_argv)( Int argc, HChar** argv );
pub_core_debuglog.h 59 void VG_(debugLog_startup) ( Int level, HChar* who );
76 void VG_(debugLog) ( Int level, const HChar* modulename,
77 const HChar* format, ... )
85 void (*send_fn)(HChar,void*),/* byte sink */
87 const HChar *format,
pub_core_ume.h 47 HChar** argv; // IN: the original argv
72 HChar* interp_name; // OUT: the interpreter name
73 HChar* interp_args; // OUT: the args for the interpreter
81 extern SysRes VG_(pre_exec_check)(const HChar* exe_name, Int* out_fd,
88 extern Int VG_(do_exec)(const HChar* exe, ExeInfo* info);
pub_core_initimg.h 72 HChar* toolname;
76 HChar** argv;
77 HChar** envp;
96 HChar* toolname;
100 HChar** argv;
101 HChar** envp;
108 HChar* executable_path; /* path passed to execve() */
pub_core_demangle.h 59 Bool VG_(maybe_Z_demangle) ( const HChar* sym,
60 /*OUT*/HChar* so, Int soLen,
61 /*OUT*/HChar* fn, Int fnLen,
m_commandline.c 46 static void add_string ( XArray* /* of HChar* */xa, HChar* str )
56 static HChar* read_dot_valgrindrc ( HChar* dir )
61 HChar* f_clo = NULL;
62 HChar filename[VKI_PATH_MAX];
95 static void add_args_from_string ( HChar* s )
97 HChar* tmp;
98 HChar* cp = s;
153 void VG_(split_up_argv)( Int argc, HChar** argv
    [all...]
pub_core_scheduler.h 60 extern void VG_(acquire_BigLock) ( ThreadId tid, HChar* who );
65 extern void VG_(acquire_BigLock_LL) ( HChar* who );
76 ThreadStatus state, HChar* who );
79 extern void VG_(release_BigLock_LL) ( HChar* who );
pub_core_options.h 72 extern HChar* VG_(clo_vgdb_prefix);
92 extern HChar* VG_(clo_soname_synonyms);
96 extern HChar* VG_(clo_trace_children_skip);
100 extern HChar* VG_(clo_trace_children_skip_by_arg);
144 extern HChar* VG_(clo_trace_symtab_patt);
217 extern HChar* VG_(clo_req_tsyms)[VG_CLO_MAX_REQ_TSYMS];
263 extern HChar* VG_(clo_kernel_variant);
275 extern Bool VG_(should_we_trace_this_child) ( HChar* child_exe_name,
276 HChar** child_argv );
pub_core_mallocfree.h 106 extern void* VG_(arena_malloc) ( ArenaId arena, HChar* cc, SizeT nbytes );
108 extern void* VG_(arena_calloc) ( ArenaId arena, HChar* cc,
110 extern void* VG_(arena_realloc) ( ArenaId arena, HChar* cc,
112 extern void* VG_(arena_memalign)( ArenaId aid, HChar* cc,
114 extern Char* VG_(arena_strdup) ( ArenaId aid, HChar* cc,
pub_core_libcfile.h 47 extern Bool VG_(resolve_filename) ( Int fd, HChar* buf, Int n_buf );
53 extern Bool VG_(is_dir) ( const HChar* f );
74 extern Int VG_(access) ( const HChar* path, Bool irusr, Bool iwusr,
79 const HChar* f, Bool allow_setuid);
91 extern Int VG_(mkstemp) ( HChar* part_of_name, /*OUT*/HChar* fullname );
m_options.c 57 HChar* VG_(clo_vgdb_prefix) = NULL;
67 HChar* VG_(clo_xml_user_comment) = NULL;
69 HChar* VG_(clo_soname_synonyms) = NULL;
71 HChar* VG_(clo_trace_children_skip) = NULL;
72 HChar* VG_(clo_trace_children_skip_by_arg) = NULL;
89 HChar* VG_(clo_trace_symtab_patt) = "*";
109 HChar* VG_(clo_req_tsyms)[VG_CLO_MAX_REQ_TSYMS];
110 HChar* VG_(clo_require_text_symbol) = NULL;
119 HChar* VG_(clo_kernel_variant) = NULL;
263 static HChar const* consume_commas ( HChar const* c )
    [all...]
  /external/valgrind/main/VEX/priv/
main_util.h 60 extern void vex_assert_fail ( const HChar* expr, const HChar* file,
61 Int line, const HChar* fn );
63 extern void vpanic ( HChar* str );
69 extern UInt vex_printf ( HChar *format, ... );
72 extern UInt vex_sprintf ( HChar* buf, HChar *format, ... );
77 extern Bool vex_streq ( const HChar* s1, const HChar* s2 );
78 extern Int vex_strlen ( const HChar* str )
    [all...]
host_s390_disasm.c 40 These should be declared as 'const HChar' but vex_printf needs
42 static HChar s390_mnm_fmt[] = "%-8s";
46 static const HChar *
49 static const HChar names[16][5] = {
63 static const HChar *
66 static const HChar names[16][5] = {
80 static const HChar *
83 static const HChar names[16][5] = {
99 static const HChar *
100 cab_operand(const HChar *base, UInt mask
    [all...]
main_util.c 56 static HChar temporary[N_TEMPORARY_BYTES] __attribute__((aligned(8)));
57 static HChar* temporary_first = &temporary[0];
58 static HChar* temporary_curr = &temporary[0];
59 static HChar* temporary_last = &temporary[N_TEMPORARY_BYTES-1];
65 static HChar permanent[N_PERMANENT_BYTES] __attribute__((aligned(8)));
66 static HChar* permanent_first = &permanent[0];
67 static HChar* permanent_curr = &permanent[0];
68 static HChar* permanent_last = &permanent[N_PERMANENT_BYTES-1];
154 HChar* private_LibVEX_alloc_first = &temporary[0];
155 HChar* private_LibVEX_alloc_curr = &temporary[0]
    [all...]
  /external/valgrind/main/include/
pub_tool_libcprint.h 38 extern UInt VG_(sprintf) ( Char* buf, const HChar* format, ... )
41 extern UInt VG_(vsprintf) ( Char* buf, const HChar* format, va_list vargs )
45 const HChar *format, ... )
49 const HChar *format, va_list vargs )
84 extern UInt VG_(printf) ( const HChar *format, ... )
86 extern UInt VG_(vprintf) ( const HChar *format, va_list vargs )
89 extern UInt VG_(printf_xml) ( const HChar *format, ... )
92 extern UInt VG_(vprintf_xml) ( const HChar *format, va_list vargs )
97 extern void VG_(vcbprintf)( void(*char_sink)(HChar, void* opaque),
99 const HChar* format, va_list vargs )
    [all...]
pub_tool_mallocfree.h 40 extern void* VG_(malloc) ( HChar* cc, SizeT nbytes );
42 extern void* VG_(calloc) ( HChar* cc, SizeT n, SizeT bytes_per_elem );
43 extern void* VG_(realloc) ( HChar* cc, void* p, SizeT size );
44 extern Char* VG_(strdup) ( HChar* cc, const Char* s );
61 extern void VG_(out_of_memory_NORETURN) ( HChar* who, SizeT szB );
pub_tool_clientstate.h 41 extern XArray* /* of HChar* */ VG_(args_for_client);
55 extern XArray* /* of HChar* */ VG_(args_for_valgrind);
63 extern const HChar* VG_(args_the_exename);
pub_tool_poolalloc.h 56 void* (*alloc)(HChar*, SizeT),
57 HChar* cc,
  /external/valgrind/main/coregrind/m_debuginfo/
priv_readpdb.h 54 HChar* ML_(find_name_of_pdb_file)( HChar* pename );
  /external/valgrind/main/VEX/pub/
libvex_emwarn.h 92 extern HChar* LibVEX_EmWarn_string ( VexEmWarn );
  /external/valgrind/main/coregrind/m_ume/
priv_ume.h 35 extern int VG_(do_exec_inner)(const HChar *exe, ExeInfo *info);
39 extern Int VG_(load_ELF) ( Int fd, const HChar *name, ExeInfo *info );
42 extern Int VG_(load_macho) ( Int fd, const HChar *name, ExeInfo *info );
48 extern Int VG_(load_script) ( Int fd, const HChar *name, ExeInfo *info );
  /external/valgrind/main/coregrind/m_aspacemgr/
priv_aspacemgr.h 68 extern void ML_(am_barf) ( HChar* what );
69 extern void ML_(am_barf_toolow) ( HChar* what );
72 extern void ML_(am_assert_fail) ( const HChar* expr,
87 extern UInt ML_(am_sprintf) ( HChar* buf, const HChar *format, ... );
111 extern Int ML_(am_readlink) ( HChar* path, HChar* buf, UInt bufsiz );
122 Bool ML_(am_resolve_filename) ( Int fd, /*OUT*/HChar* buf, Int nbuf );
  /external/valgrind/main/exp-sgcheck/tests/
bad_percentify.c 15 typedef char HChar;
33 void(*send)(HChar,void*),
35 const HChar* format,
51 void send_bytes_to_logging_sink ( OutputSink* sink, HChar* msg, Int nbytes )
62 HChar buf[512];
70 static void add_to__printf_buf ( HChar c, void *p )
85 const HChar *format, va_list vargs )
97 const HChar *format, va_list vargs )
113 UInt VG_(vprintf) ( const HChar *format, va_list vargs )
119 UInt VG_(printf) ( const HChar *format, ...
    [all...]

Completed in 534 milliseconds

1 2 3 4 5 6 7 8