Searched defs:tmp_str (Results 1 - 13 of 13) sorted by relevance

/external/selinux/libsemanage/src/
H A Dparse_utils.c275 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 DBreakpointIDList.cpp196 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 Dcg_arch.c121 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 Dclo.c411 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 Dc14n.c1006 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 DCommandObject.cpp1028 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/dbus/bus/
H A Dsignals.c910 DBusString tmp_str; local
915 _dbus_string_init_const (&tmp_str, value);
916 len = _dbus_string_get_length (&tmp_str);
953 if (!_dbus_validate_bus_name (&tmp_str, 0, len))
975 if (!_dbus_validate_interface (&tmp_str, 0, len))
997 if (!_dbus_validate_member (&tmp_str, 0, len))
1022 if (!_dbus_validate_path (&tmp_str, 0, len))
1044 if (!_dbus_validate_bus_name (&tmp_str, 0, len))
1084 if (!bus_match_rule_parse_arg_match (rule, key, &tmp_str, error))
/external/valgrind/coregrind/
H A Dm_main.c453 const HChar* tmp_str; // Used in a couple of places. local
619 else if VG_STR_CLO (arg, "--error-markers", tmp_str) {
621 const HChar *startpos = tmp_str;
653 else if VG_STR_CLO(arg, "--fair-sched", tmp_str) {
654 if (VG_(strcmp)(tmp_str, "yes") == 0)
656 else if (VG_(strcmp)(tmp_str, "try") == 0)
658 else if (VG_(strcmp)(tmp_str, "no") == 0)
794 else if VG_STR_CLO(arg, "--suppressions", tmp_str) {
795 VG_(addToXA)(VG_(clo_suppressions), &tmp_str);
798 else if VG_STR_CLO (arg, "--fullpath-after", tmp_str) {
1666 const HChar* tmp_str; local
[all...]
/external/valgrind/massif/
H A Dms_main.c408 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/vulkan-validation-layers/demos/
H A Dtri.c1520 char tmp_str[] = APP_LONG_NAME; local
/external/valgrind/helgrind/
H A Dhg_main.c5517 const HChar* tmp_str; local
5535 else if VG_STR_CLO(arg, "--hg-sanity-flags", tmp_str) {
5538 if (6 != VG_(strlen)(tmp_str)) {
5544 if ('0' == tmp_str[j]) { /* do nothing */ }
5545 else if ('1' == tmp_str[j]) HG_(clo_sanity_flags) |= (1 << (6-1-j));
/external/pdfium/third_party/libopenjpeg20/
H A Dj2k.c6102 char *tmp_str = image->comps[i].sgnd?signed_str:unsigned_str; local
6108 i,image->comps[i].bpp, tmp_str);
/external/valgrind/memcheck/
H A Dmc_main.c5722 const HChar* tmp_str; local
5813 else if VG_STR_CLO(arg, "--ignore-ranges", tmp_str) {
5814 Bool ok = parse_ignore_ranges(tmp_str);

Completed in 392 milliseconds