Searched defs:try (Results 1 - 25 of 41) sorted by relevance

12

/external/zlib/src/
H A Dconfigure13 # If you have problems, try without defining CC and CFLAGS before reporting
333 try() function
340 try() function
368 if try $CC -c $CFLAGS $test.c; then
385 if try $CC -w -c $SFLAGS $test.c &&
386 try $LDSHARED $SFLAGS -o $test$shared_ext $test.o; then
392 echo 'No shared library support; try without defining CC and CFLAGS' | tee -a configure.log
430 if try $CC -c $CFLAGS -D_LARGEFILE64_SOURCE=1 $test.c; then
447 if try $CC $CFLAGS -o $test $test.c; then
464 if try
[all...]
/external/toybox/toys/other/
H A Dchcon.c24 int do_chcon(struct dirtree *try) argument
28 if (!dirtree_notdotdot(try)) return 0;
30 path = dirtree_path(try, 0);
H A Dshred.c42 char **try; local
50 for (try = toys.optargs; *try; try++) {
52 int fd = open(*try, O_RDWR), iter = 0, throw;
56 chmod(*try, 0600);
57 fd = open(*try, O_RDWR);
60 perror_msg("%s", *try);
67 error_msg("%s: needs -s", *try);
87 perror_msg("%s", *try);
[all...]
H A Difconfig.c362 } try[] = { local
465 } else for (i = 0; i < ARRAY_LEN(try); i++) {
466 struct argh *t = try+i;
520 if (i == sizeof(try)/sizeof(*try)) {
/external/toybox/toys/posix/
H A Dchmod.c42 int do_chmod(struct dirtree *try) argument
46 if (!dirtree_notdotdot(try)) return 0;
48 mode = string_to_mode(TT.mode, try->st.st_mode);
50 char *s = dirtree_path(try, 0);
54 wfchmodat(dirtree_parentfd(try), try->name, mode);
H A Dln.c49 char *oldnew, *try = toys.optargs[i]; local
51 if (S_ISDIR(buf.st_mode)) new = xmprintf("%s/%s", dest, basename(try));
67 rc = (toys.optflags & FLAG_s) ? symlink(try, new) : link(try, new);
82 (toys.optflags & FLAG_s) ? "symbolic" : "hard", try, new);
84 if (toys.optflags & FLAG_v) fprintf(stderr, "'%s' -> '%s'\n", new, try);
H A Drm.c25 static int do_rm(struct dirtree *try) argument
27 int fd = dirtree_parentfd(try), flags = toys.optflags;
28 int dir = S_ISDIR(try->st.st_mode), or = 0, using = 0;
31 if (!dirtree_notdotdot(try)) return 0;
39 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++;
40 if (!(dir && try->again) && ((or && isatty(0)) || (flags & FLAG_i))) {
41 char *s = dirtree_path(try, 0);
52 if (faccessat(fd, try->name, R_OK, 0)) {
53 if (toys.optflags & FLAG_f) wfchmodat(fd, try
[all...]
H A Ddu.c116 struct dirtree *try = node; local
118 while ((try = try->parent))
119 if (node->st.st_dev==try->st.st_dev && node->st.st_ino==try->st.st_ino)
H A Dcp.c97 int (*callback)(struct dirtree *try);
104 int cp_node(struct dirtree *try) argument
106 int fdout = -1, cfd = try->parent ? try->parent->extra : AT_FDCWD,
107 tfd = dirtree_parentfd(try);
109 char *catch = try->parent ? try->name : TT.destname, *err = "%s";
112 if (!dirtree_notdotdot(try)) return 0;
115 if (S_ISDIR(try->st.st_mode) && try
361 install_node(struct dirtree *try) argument
[all...]
H A Dtail.c171 char *try = new->data; local
177 linepop = try[count] == '\n';
H A Dfind.c145 char *try, *new; local
148 try = new = xstrdup(s);
152 try = new = xmalloc(strlen(s)*2+1);
175 return try;
/external/valgrind/none/tests/amd64/
H A Dfxtract.c19 void try ( double x ) function
34 try( 1.27 + (double)(i*10 - 200) );
36 try(+0.0);
37 try(1.0 / 0.0);
38 try(sqrt(-1.0));
40 try(5.1e-308);
41 try(4.1e-308);
42 try(3.1e-308);
43 try(2.1e-308);
44 try(1.
[all...]
H A Dx87trigOOR.c114 void try ( char* name, void(*fn)(Res*,double), double d ) function
136 try( name, fn, 0.0 );
137 try( name, fn, 0.123 );
138 try( name, fn, -0.456 );
139 try( name, fn, 37.0 );
140 try( name, fn, -53.0 );
143 try( name, fn, limit * 0.900000 );
144 try( name, fn, limit * 0.999999 );
145 try( name, fn, limit * 1.000000 );
146 try( nam
[all...]
/external/valgrind/none/tests/x86/
H A Dfxtract.c18 void try ( double x ) function
33 try( 1.27 + (double)(i*10 - 200) );
35 try(+0.0);
36 try(1.0 / 0.0);
37 try(sqrt(-1.0));
39 try(5.1e-308);
40 try(4.1e-308);
41 try(3.1e-308);
42 try(2.1e-308);
43 try(1.
[all...]
H A Dx87trigOOR.c114 void try ( char* name, void(*fn)(Res*,double), double d ) function
136 try( name, fn, 0.0 );
137 try( name, fn, 0.123 );
138 try( name, fn, -0.456 );
139 try( name, fn, 37.0 );
140 try( name, fn, -53.0 );
143 try( name, fn, limit * 0.900000 );
144 try( name, fn, limit * 0.999999 );
145 try( name, fn, limit * 1.000000 );
146 try( nam
[all...]
/external/linux-tools-perf/src/tools/perf/util/
H A Drecord.c46 const char *try[] = {"cycles:u", "instructions:u", "cpu-clock", NULL}; local
57 ret = perf_do_probe_api(fn, cpu, try[i++]);
60 } while (ret == -EAGAIN && try[i]);
/external/linux-tools-perf/src/tools/perf/config/
H A Dutilities.mak182 # try-cc
183 # Usage: option = $(call try-cc, source-to-build, cc-options, msg)
189 try-cc = $(shell sh -c \
/external/toybox/scripts/
H A Dconfig2help.c212 struct symbol *try; local
215 for (try=sym; try; try=try->next) {
216 len = strlen(try->name);
217 if (!strncmp(try->name, s, len) && s[len]=='=' && s[len+1]=='y') {
218 try->enabled++;
240 char *try, **cdashlines, **tdashlines; local
319 try
[all...]
/external/zlib/src/test/
H A Dinfcover.c507 local int try(char *hex, char *id, int err) function
583 try("0 0 0 0 0", "invalid stored block lengths", 1);
584 try("3 0", "fixed", 0);
585 try("6", "invalid block type", 1);
586 try("1 1 0 fe ff 0", "stored", 0);
587 try("fc 0 0", "too many length or distance symbols", 1);
588 try("4 0 fe ff", "invalid code lengths set", 1);
589 try("4 0 24 49 0", "invalid bit length repeat", 1);
590 try("4 0 24 e9 ff ff", "invalid bit length repeat", 1);
591 try("
[all...]
/external/libvncserver/x11vnc/
H A Dgui.c356 rfbLog("gui: pinging %s try=%d ...\n",
383 rfbLog("gui: could not connect to: '%s', try"
420 char *try; local
424 try = (char *) malloc(strlen(p) + 1 + strlen("wish8.4") + 1);
427 sprintf(try, "%s/%s", p, wishes[i]);
428 if (stat(try, &sbuf) == 0) {
435 free(try);
763 char *try; local
767 try = (char *) malloc(strlen(p) + 1 + strlen("wish8.4") + 1);
770 sprintf(try, "
[all...]
/external/ppp/pppd/
H A Dccp.c905 ccp_options try; /* options to ask for next time */ local
908 try = *go;
918 MPPE_CI_TO_OPTS(&p[2], try.mppe);
919 if ((try.mppe & MPPE_OPT_STATEFUL) && refuse_mppe_stateful) {
921 try.mppe = 0;
922 } else if (((go->mppe | MPPE_OPT_STATEFUL) & try.mppe) != try.mppe) {
924 try.mppe = 0;
927 if (!try.mppe) {
944 try
993 ccp_options try; /* options to request next time */ local
[all...]
/external/valgrind/none/tests/ppc32/
H A Dtw.c11 void try ( char* who, void(*maybe_traps)(long,long), long arg1, long arg2 ) function
299 try("tw_" #cmp "", tw_##cmp, -150, -100); \
300 try("tw_" #cmp "", tw_##cmp, -100, -100); \
301 try("tw_" #cmp "", tw_##cmp, -50, -100);
337 try("td_" #cmp "", td_##cmp, -150, -100); \
338 try("td_" #cmp "", td_##cmp, -100, -100); \
339 try("td_" #cmp "", td_##cmp, -50, -100);
H A Dtwi.c11 void try ( char* who, void(*maybe_traps)(long), long arg ) function
298 try("twi_" #cmp "_neg100", twi_##cmp##_neg100, -150); \
299 try("twi_" #cmp "_neg100", twi_##cmp##_neg100, -100); \
300 try("twi_" #cmp "_neg100", twi_##cmp##_neg100, -50);
336 try("tdi_" #cmp "_neg100", tdi_##cmp##_neg100, -150); \
337 try("tdi_" #cmp "_neg100", tdi_##cmp##_neg100, -100); \
338 try("tdi_" #cmp "_neg100", tdi_##cmp##_neg100, -50);
/external/valgrind/none/tests/ppc64/
H A Dtw_td.c11 void try ( char* who, void(*maybe_traps)(long,long), long arg1, long arg2 ) function
299 try("tw_" #cmp "", tw_##cmp, -150, -100); \
300 try("tw_" #cmp "", tw_##cmp, -100, -100); \
301 try("tw_" #cmp "", tw_##cmp, -50, -100);
337 try("td_" #cmp "", td_##cmp, -150, -100); \
338 try("td_" #cmp "", td_##cmp, -100, -100); \
339 try("td_" #cmp "", td_##cmp, -50, -100);
H A Dtwi_tdi.c11 void try ( char* who, void(*maybe_traps)(long), long arg ) function
298 try("twi_" #cmp "_neg100", twi_##cmp##_neg100, -150); \
299 try("twi_" #cmp "_neg100", twi_##cmp##_neg100, -100); \
300 try("twi_" #cmp "_neg100", twi_##cmp##_neg100, -50);
336 try("tdi_" #cmp "_neg100", tdi_##cmp##_neg100, -150); \
337 try("tdi_" #cmp "_neg100", tdi_##cmp##_neg100, -100); \
338 try("tdi_" #cmp "_neg100", tdi_##cmp##_neg100, -50);

Completed in 2317 milliseconds

12