Searched defs:tmp_str (Results 1 - 10 of 10) sorted by relevance
/external/selinux/libsemanage/src/ |
H A D | parse_utils.c | 275 char *tmp_str = NULL; local 293 tmp_str = (char *)malloc(len + 1); 294 if (!tmp_str) { 299 strncpy(tmp_str, start, len); 300 *(tmp_str + len) = '\0'; 301 *str = tmp_str;
|
/external/lldb/source/Breakpoint/ |
H A D | BreakpointIDList.cpp | 196 std::string tmp_str = old_args.GetArgumentAtIndex (i); local 197 size_t pos = tmp_str.find ('.'); 200 std::string bp_id_str = tmp_str.substr (0, pos); 202 && tmp_str[pos+1] == '*' 203 && tmp_str.length() == (pos + 2))
|
/external/valgrind/cachegrind/ |
H A D | cg_arch.c | 121 const HChar* tmp_str; local 123 if VG_STR_CLO(arg, "--I1", tmp_str) { 124 parse_cache_opt(clo_I1c, arg, tmp_str); 126 } else if VG_STR_CLO(arg, "--D1", tmp_str) { 127 parse_cache_opt(clo_D1c, arg, tmp_str); 129 } else if (VG_STR_CLO(arg, "--L2", tmp_str) || // for backwards compatibility 130 VG_STR_CLO(arg, "--LL", tmp_str)) { 131 parse_cache_opt(clo_LLc, arg, tmp_str);
|
/external/valgrind/callgrind/ |
H A D | clo.c | 411 const HChar* tmp_str; local 431 else if VG_STR_CLO(arg, "--fn-skip", tmp_str) { 432 fn_config* fnc = get_fnc(tmp_str); 436 else if VG_STR_CLO(arg, "--dump-before", tmp_str) { 437 fn_config* fnc = get_fnc(tmp_str); 441 else if VG_STR_CLO(arg, "--zero-before", tmp_str) { 442 fn_config* fnc = get_fnc(tmp_str); 446 else if VG_STR_CLO(arg, "--dump-after", tmp_str) { 447 fn_config* fnc = get_fnc(tmp_str); 451 else if VG_STR_CLO(arg, "--toggle-collect", tmp_str) { [all...] |
/external/libxml2/ |
H A D | c14n.c | 1006 xmlChar * tmp_str; local 1028 tmp_str = xmlNodeListGetString(ctx->doc, attr->children, 1); 1029 if(tmp_str == NULL) { 1038 tmp_str_len = xmlStrlen(tmp_str); 1039 if(tmp_str_len > 1 && tmp_str[tmp_str_len - 2] == '.') { 1040 tmp_str2 = xmlStrcat(tmp_str, BAD_CAST "/"); 1042 xmlFree(tmp_str); 1049 tmp_str = tmp_str2; 1053 tmp_str2 = xmlBuildURI(res, tmp_str); 1055 xmlFree(tmp_str); [all...] |
/external/lldb/source/Interpreter/ |
H A D | CommandObject.cpp | 1028 const char *tmp_str = cmd_args.GetArgumentAtIndex (i); local 1029 if (tmp_str[0] == '`') // back-quote 1030 cmd_args.ReplaceArgumentAtIndex (i, m_interpreter.ProcessEmbeddedScriptCommands (tmp_str));
|
/external/valgrind/coregrind/ |
H A D | m_main.c | 458 const HChar* tmp_str; // Used in a couple of places. local 625 else if VG_STR_CLO (arg, "--error-markers", tmp_str) { 627 const HChar *startpos = tmp_str; 659 else if VG_STR_CLO(arg, "--fair-sched", tmp_str) { 660 if (VG_(strcmp)(tmp_str, "yes") == 0) 662 else if (VG_(strcmp)(tmp_str, "try") == 0) 664 else if (VG_(strcmp)(tmp_str, "no") == 0) 801 else if VG_STR_CLO(arg, "--suppressions", tmp_str) { 802 VG_(addToXA)(VG_(clo_suppressions), &tmp_str); 805 else if VG_STR_CLO (arg, "--fullpath-after", tmp_str) { 1673 const HChar* tmp_str; local [all...] |
/external/valgrind/massif/ |
H A D | ms_main.c | 408 const HChar* tmp_str; local 422 else if VG_STR_CLO(arg, "--alloc-fn", tmp_str) { 423 VG_(addToXA)(alloc_fns, &tmp_str); 425 else if VG_STR_CLO(arg, "--ignore-fn", tmp_str) { 426 VG_(addToXA)(ignore_fns, &tmp_str);
|
/external/valgrind/helgrind/ |
H A D | hg_main.c | 5292 const HChar* tmp_str; local 5310 else if VG_STR_CLO(arg, "--hg-sanity-flags", tmp_str) { 5313 if (6 != VG_(strlen)(tmp_str)) { 5319 if ('0' == tmp_str[j]) { /* do nothing */ } 5320 else if ('1' == tmp_str[j]) HG_(clo_sanity_flags) |= (1 << (6-1-j));
|
/external/valgrind/memcheck/ |
H A D | mc_main.c | 5201 const HChar* tmp_str; local 5292 else if VG_STR_CLO(arg, "--ignore-ranges", tmp_str) { 5293 Bool ok = parse_ignore_ranges(tmp_str);
|
Completed in 5988 milliseconds