Home
last modified time | relevance | path

Searched refs:tmpstr (Results 1 – 12 of 12) sorted by relevance

/external/toolchain-utils/deprecated/
Dcompare_benchmarks.py66 tmpstr = ''
68 tmpstr += '-'
69 print(tmpstr)
73 tmpstr = ''
75 if tmpstr != '':
76 tmpstr += ','
77 tmpstr += hdr[i]
78 print(tmpstr)
85 tmpstr = ''
87 tmpstr += '%15.15s' % hdr[i]
[all …]
/external/ltp/testcases/kernel/ipc/ipc_stress/
Dshmem_test_06.c162 char tmpstr[256]; in main() local
189 sprintf(tmpstr, "cat /proc/%d/maps >&2", (int)getpid()); in main()
191 system(tmpstr); in main()
193 sprintf(tmpstr, "shmat failed - return: %ld", in main()
195 sys_error(tmpstr, __LINE__); in main()
/external/svox/pico/lib/
Dpicodata.c974 picoos_char * tmpstr; in data_itemtype_to_string() local
977 tmpstr = (picoos_char *)"BOUND"; in data_itemtype_to_string()
980 tmpstr = (picoos_char *)"FRAME_PAR"; in data_itemtype_to_string()
983 tmpstr = (picoos_char *)"PHONE"; in data_itemtype_to_string()
986 tmpstr = (picoos_char *)"CMD"; in data_itemtype_to_string()
989 tmpstr = (picoos_char *)"ERR"; in data_itemtype_to_string()
992 tmpstr = (picoos_char *)"FRAME"; in data_itemtype_to_string()
995 tmpstr = (picoos_char *)"OTHER"; in data_itemtype_to_string()
998 tmpstr = (picoos_char *)"PUNC"; in data_itemtype_to_string()
1001 tmpstr = (picoos_char *)"SYLLPHON"; in data_itemtype_to_string()
[all …]
/external/curl/tests/
Dsshhelp.pm422 foreach my $tmpstr (qx($cmd 2>&1)) {
423 if($tmpstr =~ /OpenSSH[_-](\d+)\.(\d+)(\.(\d+))*/i) {
433 if($tmpstr =~ /Sun[_-]SSH[_-](\d+)\.(\d+)(\.(\d+))*/i) {
443 $error .= $tmpstr;
Dsshserver.pl134 my $tmpstr = $ARGV[1];
135 if($tmpstr =~ /^(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)$/) {
140 $listenaddr = $tmpstr;
Dftpserver.pl2922 my $tmpstr = $ARGV[1];
2923 if($tmpstr =~ /^(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)$/) {
2927 $listenaddr = $tmpstr;
/external/ltp/testcases/kernel/mem/vma/
Dvma04.c200 char buf[BUFSIZ], tmpstr[BUFSIZ]; in get_vmas() local
213 sprintf(tmpstr, "%ld", (t - s) / pagesize); in get_vmas()
216 sprintf(tmpstr, ",%ld", (t - s) / pagesize); in get_vmas()
218 strncat(retbuf, tmpstr, 32); in get_vmas()
/external/ltp/lib/
Drandom_range.c105 char *tmpstr, *cp, *tok, *n1str, *n2str, *multstr; in parse_ranges() local
123 tmpstr = strdup(str); in parse_ranges()
127 tok = strtok(tmpstr, ","); in parse_ranges()
158 free(tmpstr); in parse_ranges()
178 free(tmpstr); in parse_ranges()
196 free(tmpstr); in parse_ranges()
206 free(tmpstr); in parse_ranges()
/external/clang/test/SemaObjCXX/
Dreferences.mm34 void f4(NSString &tmpstr) {
35 f3(&tmpstr);
/external/iproute2/lib/
Dutils.c867 char tmpstr[3]; in hexstring_a2n() local
869 strncpy(tmpstr, str, 2); in hexstring_a2n()
870 tmpstr[2] = '\0'; in hexstring_a2n()
871 tmp = strtoul(tmpstr, &endptr, 16); in hexstring_a2n()
/external/ltp/testcases/kernel/sched/process_stress/
Dprocess.c804 char tmpstr[1024]; local
829 sprintf(tmpstr, "sigaction: %s\n", siginfo[i].signame);
830 perror(tmpstr);
/external/libxml2/
Dtree.c6517 xmlChar *elemQName, *tmpstr = NULL; in xmlGetPropNodeInternal() local
6523 tmpstr = xmlStrdup(node->ns->prefix); in xmlGetPropNodeInternal()
6524 tmpstr = xmlStrcat(tmpstr, BAD_CAST ":"); in xmlGetPropNodeInternal()
6525 tmpstr = xmlStrcat(tmpstr, node->name); in xmlGetPropNodeInternal()
6526 if (tmpstr == NULL) in xmlGetPropNodeInternal()
6528 elemQName = tmpstr; in xmlGetPropNodeInternal()
6550 if (tmpstr != NULL) in xmlGetPropNodeInternal()
6551 xmlFree(tmpstr); in xmlGetPropNodeInternal()
6572 if (tmpstr != NULL) in xmlGetPropNodeInternal()
6573 xmlFree(tmpstr); in xmlGetPropNodeInternal()