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

1 2 3 4 5 6 7

  /external/valgrind/main/coregrind/m_initimg/
priv_initimg_pathscan.h 35 extern HChar* ML_(find_executable) ( const HChar* exec );
initimg-pathscan.c 97 static HChar executable_name_in [VKI_PATH_MAX];
98 static HChar executable_name_out[VKI_PATH_MAX];
102 HChar buf[VG_(strlen)(entry) + VG_(strlen)(executable_name_in) + 3];
133 HChar* ML_(find_executable) ( const HChar* exec )
141 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 );
72 void VG_(debugLog) ( Int level, const HChar* modulename,
73 const HChar* format, ... )
81 void (*send_fn)(HChar,void*),/* byte sink */
83 const HChar *format,
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,
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);
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_initimg.h 73 HChar* toolname;
77 HChar** argv;
78 HChar** envp;
139 HChar* toolname;
178 HChar* toolname;
182 HChar** argv;
183 HChar** envp;
190 HChar* executable_path; /* path passed to execve() */
pub_core_mallocfree.h 104 extern void* VG_(arena_malloc) ( ArenaId arena, HChar* cc, SizeT nbytes );
106 extern void* VG_(arena_calloc) ( ArenaId arena, HChar* cc,
108 extern void* VG_(arena_realloc) ( ArenaId arena, HChar* cc,
110 extern void* VG_(arena_memalign)( ArenaId aid, HChar* cc,
112 extern Char* VG_(arena_strdup) ( ArenaId aid, HChar* cc,
pub_core_libcfile.h 48 extern Bool VG_(resolve_filename) ( Int fd, HChar* buf, Int n_buf );
54 extern Bool VG_(is_dir) ( const HChar* f );
75 extern Int VG_(access) ( const HChar* path, Bool irusr, Bool iwusr,
80 const HChar* f, Bool allow_setuid);
92 extern Int VG_(mkstemp) ( HChar* part_of_name, /*OUT*/HChar* fullname );
  /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 )
96 extern UInt VG_(printf_xml) ( const HChar *format, ... )
99 extern UInt VG_(vprintf_xml) ( const HChar *format, va_list vargs )
102 extern UInt VG_(printf_xml_no_f_c) ( const HChar *format, ... );
106 extern void VG_(vcbprintf)( void(*char_sink)(HChar, void* opaque)
    [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 );
53 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_xarray.h 52 extern XArray* VG_(newXA) ( void*(*alloc_fn)(HChar*,SizeT),
53 HChar* cc,
126 extern XArray* VG_(cloneXA)( HChar* cc, XArray* xa );
138 /* Convenience function: printf into an XArray of HChar, adding stuff
144 extern void VG_(xaprintf)( XArray* dst, const HChar* format, ... )
148 ( XArray* dst, const HChar* format, ... );
  /external/valgrind/main/VEX/priv/
main_util.h 58 extern void vex_assert_fail ( const HChar* expr, const HChar* file,
59 Int line, const HChar* fn );
61 extern void vpanic ( HChar* str );
67 extern UInt vex_printf ( HChar *format, ... );
70 extern UInt vex_sprintf ( HChar* buf, HChar *format, ... );
75 extern Bool vex_streq ( const HChar* s1, const HChar* s2 );
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...]
ir_opt.h 48 IRExpr* (*specHelper) (HChar*, IRExpr**, IRStmt**, Int),
  /external/valgrind/main/coregrind/m_debuginfo/
priv_misc.h 41 void* ML_(dinfo_zalloc)( HChar* cc, SizeT szB );
43 UChar* ML_(dinfo_strdup)( HChar* cc, const UChar* str );
44 UChar* ML_(dinfo_memdup)( HChar* cc, UChar* str, SizeT nStr );
priv_readpdb.h 54 HChar* ML_(find_name_of_pdb_file)( HChar* pename );
misc.c 45 void* ML_(dinfo_zalloc) ( HChar* cc, SizeT szB ) {
58 UChar* ML_(dinfo_strdup) ( HChar* cc, const UChar* str ) {
62 UChar* ML_(dinfo_memdup)( HChar* cc, UChar* str, SizeT nStr ) {
  /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/helgrind/
hg_basics.h 42 void* HG_(zalloc) ( HChar* cc, SizeT n );
44 Char* HG_(strdup) ( HChar* cc, const Char* s );

Completed in 594 milliseconds

1 2 3 4 5 6 7