Searched refs:fprintf (Results 26 - 50 of 1485) sorted by relevance

1234567891011>>

/haiku-fatelf/src/kits/midi/
H A DSamples.cpp52 fprintf(stderr, "[midi] BSamples is not supported\n");
59 fprintf(stderr, "[midi] BSamples is not supported\n");
67 fprintf(stderr, "[midi] BSamples is not supported\n");
74 fprintf(stderr, "[midi] BSamples is not supported\n");
81 fprintf(stderr, "[midi] BSamples is not supported\n");
88 fprintf(stderr, "[midi] BSamples is not supported\n");
96 fprintf(stderr, "[midi] BSamples is not supported\n");
103 fprintf(stderr, "[midi] BSamples is not supported\n");
111 fprintf(stderr, "[midi] BSamples is not supported\n");
118 fprintf(stder
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/test/
H A Dxml-curve.c36 fprintf(stderr, "Usage: %s filename.xml\n", argv[0]);
43 fprintf(stderr, "stp-xml-parse: reading `%s'...\n", argv[1]);
46 fprintf(stderr, "Using file: %s\n", argv[1]);
53 fprintf(stderr, "curve successfully created\n");
55 fprintf(stderr, "error creating curve\n");
59 fprintf(stderr, "%s", output);
60 fprintf(stderr, "curve string successfully created\n");
64 fprintf(stderr, "error creating curve string\n");
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgsmkrop.c144 fprintf (stderr,"Misplaced %c in rop string %s.\n",
164 fprintf (stderr,"Stack overflow in rop string %s.\n",ropstr);
186 fprintf (stderr,"Stack underflow in rop string %s.\n",ropstr);
237 fprintf (stderr,"Illegal character %c in rop string %s.\n",
244 fprintf (stderr,"Unbalanced shift/reduce in rop string %s.\n",ropstr);
252 fprintf (out,
258 fprintf(out," unsigned char stk%d;\n",i);
264 fprintf(out," *D = %s;\n",operand);
266 fprintf(out,"}\n\n");
269 fprintf (ou
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_mutex_trylock/
H A D3-1.c25 fprintf(stderr,"Error at pthread_mutex_init(), rc=%d\n",rc);
40 fprintf(stderr,"The mutex was already locked\n");
43 fprintf(stderr,"Invalid mutex object\n");
46 fprintf(stderr,"The maximum number of recursive locks has been exceeded\n");
/haiku-fatelf/src/bin/bash/support/
H A Dmksignames.c53 fprintf (stream, "/* This file was automatically created by %s.\n",
55 fprintf (stream, " Do not edit. Edit support/signames.c instead. */\n\n");
56 fprintf (stream,
59 fprintf (stream, "extern char *signal_names[];\n\n");
60 fprintf (stream, "extern void initialize_signames __P((void));\n\n");
62 fprintf (stream, "char *signal_names[NSIG + 4] = {\n");
65 fprintf (stream, " \"%s\",\n", signal_names[i]);
67 fprintf (stream, " (char *)0x0\n");
68 fprintf (stream, "};\n\n");
69 fprintf (strea
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/stdio-common/
H A Dfprintf.c26 fprintf (FILE *stream, const char *format, ...) function
37 libc_hidden_def (fprintf)
43 weak_alias (fprintf, _IO_fprintf)
/haiku-fatelf/src/tools/unflatten/
H A Dunflatten.cpp15 fprintf(stderr, "You need to specify a filename on the command line.\n");
19 fprintf(stderr, "File \"%s\" not found.\n", argv[1]);
23 fprintf(stderr, "Unflatten failed.\n");
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_cond_signal/
H A D1-1.c53 fprintf(stderr,"[Thread 0x%p] failed to acquire the mutex\n", (void*)self);
57 fprintf(stderr,"[Thread 0x%p] started and locked the mutex\n", (void*)self);
59 fprintf(stderr,"[Thread 0x%p] is waiting for the cond\n", (void*)self);
62 fprintf(stderr,"pthread_cond_wait return %d\n", rc);
66 fprintf(stderr,"[Thread 0x%p] was wakened and acquired the mutex again\n", (void*)self);
69 fprintf(stderr,"[Thread 0x%p] failed to release the mutex\n", (void*)self);
72 fprintf(stderr,"[Thread 0x%p] released the mutex\n", (void*)self);
82 fprintf(stderr,"Fail to initialize mutex\n");
86 fprintf(stderr,"Fail to initialize cond\n");
92 fprintf(stder
[all...]
H A D2-2.c44 fprintf(stderr,"[Thread 0x%p] failed to acquire the mutex\n", (void*)self);
47 fprintf(stderr,"[Thread 0x%p] started and locked the mutex\n", (void*)self);
51 fprintf(stderr,"Fail to get current time\n");
57 fprintf(stderr,"[Thread 0x%p] is waiting for the cond for at most %d secs\n",
61 fprintf(stderr,"[Thread 0x%p] pthread_cond_wait returned %d\n",
67 fprintf(stderr,"[Thread 0x%p] should be able to lock the recursive mutex again\n",
72 fprintf(stderr,"[Thread 0x%p] was wakened and acquired the mutex again\n", (void*)self);
76 fprintf(stderr,"[Thread 0x%p] failed to release the mutex\n", (void*)self);
81 fprintf(stderr,"[Thread 0x%p] did not owned the mutex after the cond wait\n", (void*)self);
85 fprintf(stder
[all...]
/haiku-fatelf/src/libs/tiff/
H A Dtif_print.c69 fprintf(fd, " %s: ", fip->field_name);
73 fprintf(fd, "%u", ((uint8 *) raw_data)[j]);
75 fprintf(fd, "0x%x",
78 fprintf(fd, "%d", ((int8 *) raw_data)[j]);
80 fprintf(fd, "%u", ((uint16 *) raw_data)[j]);
82 fprintf(fd, "%d", ((int16 *) raw_data)[j]);
84 fprintf(fd, "%lu",
87 fprintf(fd, "%ld", (long)((int32 *) raw_data)[j]);
91 fprintf(fd, "%f", ((float *) raw_data)[j]);
93 fprintf(f
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_cond_timedwait/
H A D1-1.c41 fprintf(stderr,"Thread1: Fail to acquire mutex\n");
44 fprintf(stderr,"Thread1 started\n");
48 fprintf(stderr,"Fail to get current time\n");
55 fprintf(stderr,"Thread1 is waiting for the cond\n");
59 fprintf(stderr,"Thread1 stops waiting when time is out\n");
63 fprintf(stderr,"pthread_cond_timedwait return %d\n", rc);
68 fprintf(stderr,"Thread1 wakened up\n");
70 fprintf(stderr,"Thread1 did not block on the cond at all\n");
83 fprintf(stderr,"Fail to initialize mutex\n");
87 fprintf(stder
[all...]
H A D2-3.c42 fprintf(stderr,"Thread1 failed to acquire the mutex\n");
45 fprintf(stderr,"Thread1 started\n");
49 fprintf(stderr,"Fail to get current time\n");
55 fprintf(stderr,"Thread1 is waiting for the cond\n");
58 fprintf(stderr,"Thread1 stops waiting when time is out\n");
62 fprintf(stderr,"pthread_cond_timedwait return %d instead of ETIMEDOUT\n", rc);
75 fprintf(stderr,"Fail to initialize mutex\n");
79 fprintf(stderr,"Fail to initialize cond\n");
84 fprintf(stderr,"Fail to create thread 1\n");
95 fprintf(stder
[all...]
H A D4-1.c38 fprintf(stderr,"Thread1 failed to acquire the mutex\n");
41 fprintf(stderr,"Thread1 started\n");
44 fprintf(stderr,"Fail to get current time\n");
50 fprintf(stderr,"Thread1 is waiting for the cond for %d seconds\n", TIMEOUT);
53 fprintf(stderr,"Thread1 stops waiting when time is out\n");
58 fprintf(stderr,"pthread_cond_timedwait return %d instead of ETIMEDOUT\n", rc);
70 fprintf(stderr,"Fail to initialize mutex\n");
74 fprintf(stderr,"Fail to initialize cond\n");
79 fprintf(stderr,"Fail to create thread 1\n");
83 fprintf(stder
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_cond_wait/
H A D3-1.c44 fprintf(stderr,"Thread1 failed to acquire the mutex\n");
47 fprintf(stderr,"Thread1 started\n");
50 fprintf(stderr,"Thread1 is waiting for the cond\n");
54 fprintf(stderr,"pthread_cond_wait returns EINVAL\n");
58 fprintf(stderr,"pthread_cond_wait returns EPERM\n");
61 fprintf(stderr,"pthread_cond_wait returns %d\n", rc);
66 fprintf(stderr,"Thread1 waked up before being notified\n");
69 fprintf(stderr,"Thread1 wakened up and got returned value 0\n");
72 fprintf(stderr,"Thread1 failed to release the mutex\n");
75 fprintf(stder
[all...]
/haiku-fatelf/src/bin/gawk/
H A Dprofile.c128 fprintf(prof_fp, "%6ld ", count);
189 fprintf(prof_fp, "\t");
194 fprintf(prof_fp, "{");
197 fprintf(prof_fp, " # %ld",
199 fprintf(prof_fp, "\n");
206 fprintf(prof_fp, "}\n");
214 fprintf(prof_fp, "\n");
226 fprintf(prof_fp, "if (");
230 fprintf(prof_fp, ") {");
233 fprintf(prof_f
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_mutex_init/
H A D2-1.c26 fprintf(stderr,"Fail to initialize mutex, rc=%d\n",rc);
33 fprintf(stderr,"Fail to lock the mutex, rc=%d\n",rc);
37 fprintf(stderr,"Main: hold the mutex for a while\n");
42 fprintf(stderr,"Fail to unlock the mutex, rc=%d\n",rc);
48 fprintf(stderr,"Fail to destory the mutex, rc=%d\n",rc);
H A D4-1.c26 fprintf(stderr,"Error at pthread_mutexattr_init(), rc=%d\n",rc);
38 fprintf(stderr,"Insufficient memory to initialize the mutex\n");
42 fprintf(stderr,"Lack of the necessary resources to initilize the mutex\n");
46 fprintf(stderr,"Permission denied\n");
50 fprintf(stderr,"Detected an attemp to reinitilize a previously initilized mutex\n");
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_mutex_unlock/
H A D3-1.c25 fprintf(stderr,"Error at pthread_mutex_init(), rc=%d\n",rc);
30 fprintf(stderr,"Error at pthread_mutex_lock(), rc=%d\n",rc);
42 fprintf(stderr,"Current thread does not own the mutex\n");
46 fprintf(stderr,"Invalid mutex object\n");
50 fprintf(stderr,"The maximum number of recursive locks has been exceeded\n");
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_cond_destroy/
H A D1-1.c28 fprintf(stderr,"Error at pthread_condattr_init(), rc=%d\n",rc);
34 fprintf(stderr,"Fail to initialize cond1, rc=%d\n",rc);
40 fprintf(stderr,"Fail to initialize cond2, rc=%d\n",rc);
46 fprintf(stderr,"Error at pthread_condattr_destroy(), rc=%d\n",rc);
52 fprintf(stderr,"Fail to destroy cond1, rc=%d\n",rc);
59 fprintf(stderr,"Fail to destroy cond2, rc=%d\n",rc);
66 fprintf(stderr,"Fail to destroy cond3, rc=%d\n",rc);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_mutex_destroy/
H A D1-1.c28 fprintf(stderr,"Error at pthread_mutexattr_init(), rc=%d\n",rc);
34 fprintf(stderr,"Fail to initialize mutex1, rc=%d\n",rc);
40 fprintf(stderr,"Fail to initialize mutex2, rc=%d\n",rc);
46 fprintf(stderr,"Error at pthread_mutexattr_destroy(), rc=%d\n",rc);
52 fprintf(stderr,"Fail to destroy mutex1, rc=%d\n",rc);
59 fprintf(stderr,"Fail to destroy mutex2, rc=%d\n",rc);
66 fprintf(stderr,"Fail to destroy mutex3, rc=%d\n",rc);
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Ddevsw.c48 fprintf (stderr,"Error opening log file '%s'\n",angelDebugFilename);
62 fprintf (angelDebugLogFile,"ADP log file opened at %s\n",asctime(localtime(&t)));
74 fprintf (angelDebugLogFile,"ADP log file closed at %s\n",asctime(localtime(&t)));
121 fprintf(fp,"%s [T=%d L=%d] ",label,p->type,p->len);
123 fprintf(fp,"%02x ",p->data[i]);
124 fprintf(fp,"\n");
130 fprintf(fp,"R=%08x ",r);
131 fprintf(fp,"%s ", r&0x80000000 ? "H<-T" : "H->T");
135 case CI_PRIVATE: fprintf(fp,"CI_PRIVATE: "); break;
136 case CI_HADP: fprintf(f
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_cond_broadcast/
H A D2-2.c44 fprintf(stderr,"[Thread 0x%p] failed to acquire the mutex\n", (void*)self);
47 fprintf(stderr,"[Thread 0x%p] started and locked the mutex\n", (void*)self);
51 fprintf(stderr,"Fail to get current time\n");
57 fprintf(stderr,"[Thread 0x%p] is waiting for the cond for at most %d secs\n",
61 fprintf(stderr,"[Thread 0x%p] pthread_cond_wait returned %d\n",
67 fprintf(stderr,"[Thread 0x%p] should not be able to lock the mutex again\n",
72 fprintf(stderr,"[Thread 0x%p] was wakened and acquired the mutex again\n", (void*)self);
76 fprintf(stderr,"[Thread 0x%p] failed to release the mutex\n", (void*)self);
80 fprintf(stderr,"[Thread 0x%p] released the mutex\n", (void*)self);
90 fprintf(stder
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/math/
H A Dmath_test.cpp45 fprintf(stdout, "value\tsin2()+cos2()\n");
51 fprintf(stdout, "%0.3f\t%0.10f", f, x*x + y*y);
52 fprintf(stdout, " **");
53 fprintf(stdout, "\n");
57 fprintf(stdout, "\n");
60 fprintf(stdout, "value\tsin(value)\tbe_sin(value)\n");
66 fprintf(stdout, "%0.3f\t%0.10f\t%0.10f", f, x, y);
67 fprintf(stdout, " **");
68 fprintf(stdout, "\n");
72 fprintf(stdou
[all...]
/haiku-fatelf/src/bin/
H A Dmail.cpp30 fprintf(stdout,"[OBOS-mail] Sorry: This program can only send mail, not read it.\n");
31 fprintf(stdout,"usage: /bin/mail [-v] [-s subject] [-c cc-addr] [-b bcc-addr] to-addr ...\n");
64 fprintf(stdout,"\n");
65 fprintf(stdout,"To:\t<%s> \n",to.String());
66 fprintf(stdout,"Cc:\t<%s> \n",cc);
67 fprintf(stdout,"Bcc:\t<%s> \n",bcc);
68 fprintf(stdout,"Subj:\t<%s> \n",subject);
69 fprintf(stdout,"Body:\t<%s> \n",body.String());
70 fprintf(stdout,"\n");
78 fprintf(stdou
[all...]
/haiku-fatelf/src/libs/pdflib/progs/pdflib/
H A Dpdfimage.c63 fprintf(stderr, "pdfimage: convert images to PDF.\n");
64 fprintf(stderr, "(C) PDFlib GmbH and Thomas Merz 1997-2004\n");
65 fprintf(stderr, "usage: pdfimage [options] imagefile(s)\n");
66 fprintf(stderr, "Available options:\n");
67 fprintf(stderr, "-o <file> output file (required)\n");
68 fprintf(stderr, "-p <num> bookmark page numbering starting from num\n");
69 fprintf(stderr, "-r <res> force resolution overriding image settings\n");
102 fprintf(stderr, "Error: non-positive resolution.\n");
112 fprintf(stderr, "Error: no image files given.\n");
117 fprintf(stder
[all...]

Completed in 210 milliseconds

1234567891011>>