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

/external/ltp/testcases/kernel/fs/mongo/
H A Dmongo_compare.c12 char tmp_str[20][100]; variable
125 strcpy(tmp_str[i], line2);
130 fprintf(f4, "<tt>%s</tt><br>\n", tmp_str[k]);
/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/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.c1018 xmlChar * tmp_str; local
1040 tmp_str = xmlNodeListGetString(ctx->doc, attr->children, 1);
1041 if(tmp_str == NULL) {
1050 tmp_str_len = xmlStrlen(tmp_str);
1051 if(tmp_str_len > 1 && tmp_str[tmp_str_len - 2] == '.') {
1052 tmp_str2 = xmlStrcat(tmp_str, BAD_CAST "/");
1054 xmlFree(tmp_str);
1061 tmp_str = tmp_str2;
1065 tmp_str2 = xmlBuildURI(res, tmp_str);
1067 xmlFree(tmp_str);
[all...]
/external/valgrind/coregrind/
H A Dm_main.c446 const HChar* tmp_str; // Used in a couple of places. local
599 else if VG_STR_CLO (arg, "--error-markers", tmp_str) {
601 const HChar *startpos = tmp_str;
634 else if VG_STR_CLO(arg, "--fair-sched", tmp_str) {
635 if (VG_(strcmp)(tmp_str, "yes") == 0)
637 else if (VG_(strcmp)(tmp_str, "try") == 0)
639 else if (VG_(strcmp)(tmp_str, "no") == 0)
775 else if VG_STR_CLO(arg, "--suppressions", tmp_str) {
776 VG_(addToXA)(VG_(clo_suppressions), &tmp_str);
779 else if VG_STR_CLO (arg, "--fullpath-after", tmp_str) {
1171 const HChar* tmp_str; local
[all...]
/external/libusb/libusb/os/
H A Dwindows_winusb.c563 char *tok, *tmp_str; local
569 tmp_str = _strdup(driver);
570 if (tmp_str == NULL)
573 tok = strtok(tmp_str, sep_str);
577 free(tmp_str);
584 free(tmp_str);
/external/valgrind/massif/
H A Dms_main.c382 const HChar* tmp_str; local
396 else if VG_STR_CLO(arg, "--alloc-fn", tmp_str) {
397 VG_(addToXA)(alloc_fns, &tmp_str);
399 else if VG_STR_CLO(arg, "--ignore-fn", tmp_str) {
400 VG_(addToXA)(ignore_fns, &tmp_str);
/external/valgrind/helgrind/
H A Dhg_main.c5577 const HChar* tmp_str; local
5595 else if VG_STR_CLO(arg, "--hg-sanity-flags", tmp_str) {
5598 if (6 != VG_(strlen)(tmp_str)) {
5604 if ('0' == tmp_str[j]) { /* do nothing */ }
5605 else if ('1' == tmp_str[j]) HG_(clo_sanity_flags) |= (1 << (6-1-j));
/external/pdfium/third_party/libopenjpeg20/
H A Dj2k.c6701 char *tmp_str = image->comps[i].sgnd ? signed_str : unsigned_str; local
6707 i, image->comps[i].bpp, tmp_str);
/external/valgrind/memcheck/
H A Dmc_main.c6039 const HChar* tmp_str; local
6130 else if VG_STR_CLO(arg, "--ignore-ranges", tmp_str) {
6131 Bool ok = parse_ignore_ranges(tmp_str);
6160 else if VG_STR_CLO(arg, "--ignore-range-below-sp", tmp_str) {
6168 Bool ok = parse_UInt_pair(&tmp_str, &offs1, &offs2);
6170 if (ok && *tmp_str != 0) ok = False;

Completed in 589 milliseconds