/external/valgrind/main/cachegrind/ |
H A D | cg-arch.c | 119 Char* tmp_str; local 121 if VG_STR_CLO(arg, "--I1", tmp_str) { 122 parse_cache_opt(clo_I1c, arg, tmp_str); 124 } else if VG_STR_CLO(arg, "--D1", tmp_str) { 125 parse_cache_opt(clo_D1c, arg, tmp_str); 127 } else if (VG_STR_CLO(arg, "--L2", tmp_str) || // for backwards compatibility 128 VG_STR_CLO(arg, "--LL", tmp_str)) { 129 parse_cache_opt(clo_LLc, arg, tmp_str);
|
/external/valgrind/main/callgrind/ |
H A D | clo.c | 410 Char* tmp_str; local 430 else if VG_STR_CLO(arg, "--fn-skip", tmp_str) { 431 fn_config* fnc = get_fnc(tmp_str); 435 else if VG_STR_CLO(arg, "--dump-before", tmp_str) { 436 fn_config* fnc = get_fnc(tmp_str); 440 else if VG_STR_CLO(arg, "--zero-before", tmp_str) { 441 fn_config* fnc = get_fnc(tmp_str); 445 else if VG_STR_CLO(arg, "--dump-after", tmp_str) { 446 fn_config* fnc = get_fnc(tmp_str); 450 else if VG_STR_CLO(arg, "--toggle-collect", tmp_str) { [all...] |
/external/openssl/crypto/engine/ |
H A D | eng_dyn.c | 389 char *tmp_str = BUF_strdup(p); local 390 if(!tmp_str) 396 sk_OPENSSL_STRING_insert(ctx->dirs, tmp_str, -1);
|
/external/libxml2/ |
H A D | c14n.c | 1003 xmlChar * tmp_str; local 1025 tmp_str = xmlNodeListGetString(ctx->doc, attr->children, 1); 1026 if(tmp_str == NULL) { 1035 tmp_str_len = xmlStrlen(tmp_str); 1036 if(tmp_str_len > 1 && tmp_str[tmp_str_len - 2] == '.') { 1037 tmp_str2 = xmlStrcat(tmp_str, BAD_CAST "/"); 1039 xmlFree(tmp_str); 1046 tmp_str = tmp_str2; 1050 tmp_str2 = xmlBuildURI(res, tmp_str); 1052 xmlFree(tmp_str); [all...] |
/external/valgrind/main/coregrind/ |
H A D | m_main.c | 430 Char* tmp_str; // Used in a couple of places. local 637 else if VG_STR_CLO(arg, "--suppressions", tmp_str) { 643 VG_(clo_suppressions)[VG_(clo_n_suppressions)] = tmp_str; 647 else if VG_STR_CLO (arg, "--fullpath-after", tmp_str) { 653 VG_(clo_fullpath_after)[VG_(clo_n_fullpath_after)] = tmp_str; 657 else if VG_STR_CLO(arg, "--require-text-symbol", tmp_str) { 671 ok = tmp_str && VG_(strlen)(tmp_str) > 0; 673 patt[0] = patt[3] = tmp_str[0]; 677 ok = VG_(string_match)(patt, tmp_str); [all...] |
/external/dbus/bus/ |
H A D | signals.c | 838 DBusString tmp_str; local 843 _dbus_string_init_const (&tmp_str, value); 844 len = _dbus_string_get_length (&tmp_str); 881 if (!_dbus_validate_bus_name (&tmp_str, 0, len)) 903 if (!_dbus_validate_interface (&tmp_str, 0, len)) 925 if (!_dbus_validate_member (&tmp_str, 0, len)) 947 if (!_dbus_validate_path (&tmp_str, 0, len)) 969 if (!_dbus_validate_bus_name (&tmp_str, 0, len)) 984 if (!bus_match_rule_parse_arg_match (rule, key, &tmp_str, error))
|
/external/qemu/block/ |
H A D | vmdk.c | 139 char *p_name, *tmp_str; local 145 tmp_str = strstr(desc,"parentCID"); 146 pstrcpy(tmp_desc, sizeof(tmp_desc), tmp_str);
|
/external/valgrind/main/massif/ |
H A D | ms_main.c | 420 Char* tmp_str; local 434 else if VG_STR_CLO(arg, "--alloc-fn", tmp_str) { 435 VG_(addToXA)(alloc_fns, &tmp_str); 437 else if VG_STR_CLO(arg, "--ignore-fn", tmp_str) { 438 VG_(addToXA)(ignore_fns, &tmp_str);
|
/external/dbus/test/ |
H A D | decode-gcov.c | 1425 DBusString tmp_str; local 1427 _dbus_string_init_const (&tmp_str, fl->name); 1429 if (_dbus_string_ends_with_c_str (&tmp_str,
|
/external/valgrind/main/helgrind/ |
H A D | hg_main.c | 4851 Char* tmp_str; local 4871 else if VG_STR_CLO(arg, "--hg-sanity-flags", tmp_str) { 4874 if (6 != VG_(strlen)(tmp_str)) { 4880 if ('0' == tmp_str[j]) { /* do nothing */ } 4881 else if ('1' == tmp_str[j]) HG_(clo_sanity_flags) |= (1 << (6-1-j));
|
/external/valgrind/main/memcheck/ |
H A D | mc_main.c | 4777 Char* tmp_str; local 4847 else if VG_STR_CLO(arg, "--summary-file", tmp_str) { 4848 MC_(clo_summary_file) = VG_(strdup)("clo_summary_file", tmp_str); 4850 else if VG_STR_CLO(arg, "--ignore-ranges", tmp_str) { 4852 Bool ok = parse_ignore_ranges(tmp_str);
|