Searched refs:out (Results 26 - 50 of 288) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DDebugSupport.cpp36 static int out = -1; variable
47 out = open(DEBUG_PRINT_FILE, O_RDWR | O_CREAT | O_TRUNC);
48 if (out < 0) {
76 close(out);
77 out = -1;
146 write(out, buffer, strlen(buffer));
/haiku/src/apps/icon-o-matic/generic/support/
H A DDebug.cpp35 static int out = -1; variable
46 out = open(DEBUG_PRINT_FILE, O_RDWR | O_CREAT | O_TRUNC);
47 if (out < 0) {
75 close(out);
76 out = -1;
147 write(out, buffer, strlen(buffer));
/haiku/src/servers/package/
H A DDebugSupport.cpp36 static int out = -1; variable
47 out = open(DEBUG_PRINT_FILE, O_RDWR | O_CREAT | O_TRUNC);
48 if (out < 0) {
76 close(out);
77 out = -1;
146 write(out, buffer, strlen(buffer));
/haiku/src/add-ons/kernel/file_systems/userlandfs/shared/
H A DDebug.cpp32 static int out = -1; variable
43 out = open(DEBUG_PRINT_FILE, O_RDWR | O_CREAT | O_TRUNC);
44 if (out < 0) {
72 close(out);
73 out = -1;
144 write(out, buffer, strlen(buffer));
/haiku/src/system/libroot/posix/string/
H A Dstrxfrm.cpp20 strxfrm(char *out, const char *in, size_t size) argument
26 status_t status = backend->Strxfrm(out, in, size, outSize);
34 return strlcpy(out, in, size);
39 strxfrm_l(char *out, const char *in, size_t size, locale_t l) argument
46 status_t status = backend->Strxfrm(out, in, size, outSize);
54 return strlcpy(out, in, size);
/haiku/src/build/libbe/support/
H A DArchivable.cpp68 static void Demangle(const char *name, BString &out);
69 static void Mangle(const char *name, BString &out);
207 void Demangle(const char* name, BString& out) argument
212 out = "";
245 out.Append(name, nameLen);
246 out += "::";
251 out.Append(name, GetNumber(name));
254 void Mangle(const char* name, BString& out) argument
279 out = "";
282 out
[all...]
/haiku/src/kits/mail/
H A Dmail_encoding.cpp24 encode(mail_encoding encoding, char *out, const char *in, off_t length, argument
29 return encode_base64(out,in,length,headerMode);
31 return encode_qp(out,in,length,headerMode);
35 memcpy(out,in,length);
47 decode(mail_encoding encoding, char *out, const char *in, off_t length, argument
52 return decode_base64(out, in, length);
54 return uu_decode(out, in, length);
58 memcpy(out, in, length);
61 return decode_qp(out, in, length, underscoreIsSpace);
117 decode_qp(char *out, cons argument
157 encode_qp(char *out, const char *in, off_t length, int headerMode) argument
191 uu_decode(char *out, const char *in, off_t length) argument
[all...]
/haiku/src/kits/network/libnetservices2/
H A DNetServicesMisc.cpp189 char out[4] = {0, 0, 0, 0}; local
194 out[0] = (in[0] & 0xFC) >> 2;
195 out[1] = ((in[0] & 0x03) << 4) | ((in[1] & 0xF0) >> 4);
196 out[2] = ((in[1] & 0x0F) << 2) | ((in[2] & 0xC0) >> 6);
197 out[3] = in[2] & 0x3F;
200 out[i] = kBase64Symbols[(int) out[i]];
206 out[2] = '=';
209 out[3] = '=';
213 result.Append(out,
[all...]
/haiku/src/add-ons/kernel/partitioning_systems/session/
H A DDebug.cpp25 \brief Increases the indentation level, prints out the enclosing function's
36 \brief Prints out the enclosing function's name followed by the contents
66 \brief Prints out enough indentation characters to indent the current line
100 \brief Prints out a description of the error code being returned
110 \brief Prints out a fatal error message.
142 after printing out the handy message bundled in the parenthesee
276 DebugOutputFile *out = NULL; variable
279 \c out variable is called when built as an R5 filesystem add-on,
286 if (!out) {
287 out
[all...]
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUdfDebug.cpp25 \brief Increases the indentation level, prints out the enclosing function's
36 \brief Prints out the enclosing function's name followed by the contents
66 \brief Prints out enough indentation characters to indent the current line
100 \brief Prints out a description of the error code being returned
110 \brief Prints out a fatal error message.
142 after printing out the handy message bundled in the parenthesee
278 DebugOutputFile *out = NULL; variable
281 \c out variable is called when built as an R5 filesystem add-on,
288 if (!out) {
289 out
[all...]
/haiku/src/add-ons/media/plugins/ffmpeg/
H A Dgfx_conv_c.cpp8 gfx_conv_null(AVFrame *in, AVFrame *out, int width, int height) argument
10 memcpy(out->data[0], in->data[0], height * in->linesize[0]);
15 gfx_conv_yuv410p_ycbcr422_c(AVFrame *in, AVFrame *out, int width, int height) argument
30 // in->linesize[1], in->linesize[2], out->linesize[0], out->linesize[1],
31 // out->linesize[2]);
32 // memcpy(out->data[0], in->data[0], height * in->linesize[0]);
33 unsigned long *po = (unsigned long *)out->data[0];
39 po_eol = (unsigned long *)(((char *)po) + out->linesize[0]);
67 po = (unsigned long *)((char *)po + out
78 gfx_conv_yuv411p_ycbcr422_c(AVFrame *in, AVFrame *out, int width, int height) argument
87 gfx_conv_yuv420p_ycbcr422_c(AVFrame *in, AVFrame *out, int width, int height) argument
160 gfx_conv_yuv420p10le_rgb32_c(AVFrame *in, AVFrame *out, int width, int height) argument
215 gfx_conv_yuv410p_rgb32_c(AVFrame *in, AVFrame *out, int width, int height) argument
254 gfx_conv_yuv411p_rgb32_c(AVFrame *in, AVFrame *out, int width, int height) argument
261 gfx_conv_YCbCr422_RGB32_c(AVFrame *in, AVFrame *out, int width, int height) argument
301 gfx_conv_GBRP_RGB32_c(AVFrame *in, AVFrame *out, int width, int height) argument
[all...]
/haiku/src/system/kernel/fs/
H A Dvfs_tracing.h51 virtual void AddDump(TraceOutput& out) argument
53 out.Print("fd new: descriptor: %p (%" B_PRId32 "), context: %p, "
72 virtual void AddDump(TraceOutput& out) argument
74 out.Print("fd put: descriptor: %p (%" B_PRId32 ")", fDescriptor,
91 virtual void AddDump(TraceOutput& out) argument
93 out.Print("fd get: descriptor: %p (%" B_PRId32 "), context: %p, "
114 virtual void AddDump(TraceOutput& out) argument
116 out.Print("fd remove: descriptor: %p (%" B_PRId32 "), context: %p, "
141 virtual void AddDump(TraceOutput& out) argument
143 out
171 AddDump(TraceOutput& out) argument
216 DumpStackTrace(TraceOutput& out) argument
240 AddDump(TraceOutput& out) argument
260 AddDump(TraceOutput& out) argument
278 AddDump(TraceOutput& out) argument
[all...]
/haiku/src/bin/mkfs/
H A Dmain.cpp25 print_help(bool out) argument
27 fprintf(out ? stdout : stderr,
48 print_help_exit(bool out) argument
50 print_help(out);
51 exit(out ? 0 : 1);
/haiku/src/tests/system/libroot/posix/
H A Dposix_spawn_pipe_test.c14 int out[2], err[2]; local
19 panic(pipe(out), "pipe stdout");
24 errno = posix_spawn_file_actions_addclose(&fdops, out[readIdx]);
26 errno = posix_spawn_file_actions_adddup2(&fdops, out[writeIdx], 1);
35 FILE *cOut = fdopen(out[readIdx], "r");
/haiku/src/system/kernel/scheduler/
H A Dscheduler_tracing.cpp20 EnqueueThread::AddDump(TraceOutput& out) argument
22 out.Print("scheduler enqueue %" B_PRId32 " \"%s\", effective priority %"
39 RemoveThread::AddDump(TraceOutput& out) argument
41 out.Print("scheduler remove %" B_PRId32 ", priority %" B_PRId32, fID,
56 ScheduleThread::AddDump(TraceOutput& out) argument
58 out.Print("schedule %" B_PRId32 " \"%s\", priority %" B_PRId32 ", CPU %"
64 out.Print("sem %" B_PRId32,
68 out.Print("cvar %p", fPreviousWaitObject);
71 out.Print("snooze()");
74 out
[all...]
/haiku/src/libs/uuid/
H A Duuid.h77 void uuid_generate(uuid_t out);
78 void uuid_generate_random(uuid_t out);
79 void uuid_generate_time(uuid_t out);
88 void uuid_unparse(const uuid_t uu, char *out);
89 void uuid_unparse_lower(const uuid_t uu, char *out);
90 void uuid_unparse_upper(const uuid_t uu, char *out);
/haiku/src/add-ons/kernel/file_systems/shared/
H A DDebugSupport.cpp38 static int out = -1; variable
49 out = open(DEBUG_PRINT_FILE, O_RDWR | O_CREAT | O_TRUNC);
50 if (out < 0) {
78 close(out);
79 out = -1;
165 write(out, buffer, strlen(buffer));
/haiku/headers/private/kernel/
H A Dscheduling_analysis.h43 virtual void AddDump(TraceOutput& out) argument
45 out.Print("sem create \"%s\" -> %" B_PRId32 "", fName, fID);
81 virtual void AddDump(TraceOutput& out) argument
83 out.Print("cvar init variable %p: object: %p \"%s\"", fVariable,
124 virtual void AddDump(TraceOutput& out) argument
126 out.Print("mutex init %p: name: \"%s\"", fMutex, fName);
160 virtual void AddDump(TraceOutput& out) argument
162 out.Print("rwlock init %p: name: \"%s\"", fLock, fName);
/haiku/headers/private/wmi/
H A Dwmi.h32 uint32 methodId, const acpi_data* in, acpi_data* out);
38 acpi_data* out);
/haiku/src/bin/rc/
H A Dparser.y622 data_t out;
623 out.type = type;
624 out.name = NULL;
625 out.size = size;
626 out.ptr = alloc_mem(size);
627 return out;
634 data_t out = make_data(sizeof(bool), get_type("bool"));
635 *((bool*)out.ptr) = b;
636 return out;
643 data_t out
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A De1000_82541.c113 goto out;
118 goto out;
121 out:
185 goto out;
212 out:
395 goto out;
404 /* Zero out the Multicast HASH table */
433 out:
456 goto out;
459 goto out;
[all...]
H A De1000_82543.c94 goto out;
131 goto out;
138 goto out;
145 goto out;
151 goto out;
156 goto out;
160 out:
295 goto out;
300 out:
319 goto out;
[all...]
/haiku/headers/cpp/
H A Dpfstream.h55 opfstream(const char *name, int mode=ios::out, int prot=0664);
/haiku/src/add-ons/media/media-add-ons/finepix_webcam/FinePixJpeg/
H A Dfinepix-jpeg.h28 int out[64 * 6]; member in struct:jpeg_decdata
/haiku/src/libs/stdc++/legacy/
H A Dindstream.cc44 if (_delete_flags & ios::out) delete put_stream();
78 int select = mode == 0 ? (ios::in|ios::out) : mode;
80 streambuf *pbuf = (select & ios::out) ? put_stream() : (streambuf*)NULL;
87 ret_val = pbuf->seekoff(off, dir, ios::out);
95 int select = mode == 0 ? (ios::in|ios::out) : mode;
97 streambuf *pbuf = (select & ios::out) ? put_stream() : (streambuf*)NULL;
104 ret_val = pbuf->seekpos(pos, ios::out);

Completed in 213 milliseconds

1234567891011>>