Searched refs:output (Results 1 - 25 of 289) sorted by relevance

1234567891011>>

/haiku/src/tests/kits/net/netservices2/
H A DHttpDebugLogger.cpp46 BString output; local
51 output << "[" << id << "] ";
58 output << "<HostNameResolved> " << hostname;
62 output << "<ConnectionOpened>";
68 output << "<UploadProgress> bytes uploaded " << numBytes;
70 output << " (total unknown)";
72 output << " (" << totalBytes << " total)";
77 output << "<ResponseStarted>";
84 output << "<HttpRedirect> to: " << redirectUrl;
90 output << "<HttpStatu
[all...]
/haiku/src/apps/debugger/user_interface/gui/value/
H A DTableCellFormattedValueRenderer.cpp42 BString output; local
44 if (fValueFormatter->FormatValue(value, output) != B_OK)
48 TableCellValueRendererUtils::DrawString(targetView, rect, output,
56 BString output; local
58 if (fValueFormatter->FormatValue(value, output) != B_OK)
63 output);
/haiku/src/kits/network/libnetservices/
H A DUrlProtocolRoster.cpp25 BUrlProtocolRoster::MakeRequest(const BUrl& url, BDataIO* output, argument
30 return new(std::nothrow) BHttpRequest(url, output, false, "HTTP",
33 return new(std::nothrow) BHttpRequest(url, output, true, "HTTPS",
36 return new(std::nothrow) BFileRequest(url, output, listener, context);
38 return new(std::nothrow) BDataRequest(url, output, listener, context);
40 return new(std::nothrow) BGopherRequest(url, output, listener, context);
/haiku/src/system/libnetwork/netresolv/net/
H A Dbase64.c89 The encoding process represents 24-bit groups of input bits as output
97 output string.
133 output will be an integral multiple of 4 characters
136 here, the final unit of encoded output will be two
139 here, the final unit of encoded output will be three
147 u_char output[4]; local
159 output[0] = (uint32_t)input[0] >> 2;
160 output[1] = ((uint32_t)(input[0] & 0x03) << 4) +
162 output[2] = ((uint32_t)(input[1] & 0x0f) << 2) +
164 output[
[all...]
/haiku/src/servers/syslog_daemon/
H A Dlistener_output.cpp21 BMessage output(SYSLOG_MESSAGE);
23 output.AddInt32("from", message.from);
24 output.AddInt32("when", message.when);
25 output.AddString("ident", message.ident);
26 output.AddString("message", message.message);
27 output.AddInt32("options", message.options);
28 output.AddInt32("priority", message.priority);
35 status_t status = target->SendMessage(&output);
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DNamespaceDump.cpp84 char output[320]; local
97 snprintf(output, sizeof(output), "%s%s", tabs, result + depth);
100 strlcat(output, " INTEGER", sizeof(output));
103 strlcat(output, " STRING", sizeof(output));
106 strlcat(output, " BUFFER", sizeof(output));
109 strlcat(output, " PACKAG
[all...]
/haiku/src/tests/kits/app/bapplication/
H A DAppQuitTester.cpp55 const char *output = local
63 // get the output and compare the result
64 check_output(runner, output);
76 const char *output = local
86 // get the output and compare the result
87 check_output(runner, output);
99 const char *output = local
109 // get the output and compare the result
110 check_output(runner, output);
124 const char *output local
[all...]
/haiku/src/bin/cddb_lookup/
H A Dcddb_server.cpp83 BString output; local
84 status_t result = _SendCommand(cddbCommand, output);
87 output.Remove(0, output.FindFirst("\r\n\r\n") + 4);
91 output.MoveInto(statusCode, 0, 3);
100 output.Remove(0, output.FindFirst("\r\n") + 2);
103 output.Remove(0, 1);
126 output.MoveInto(responseData->category, 0, output
174 BString output; local
363 _SendCommand(const BString& command, BString& output) argument
[all...]
/haiku/src/bin/package/
H A Dcommand_info.cpp73 // parse format string and produce output
74 BString output; local
90 output << '%';
94 output << info.CanonicalFileName();
96 output << info.Name();
98 output << info.Version().ToString();
128 output << c;
133 fputs(output.String(), stdout);
/haiku/src/kits/media/experimental/
H A DMediaClientDefs.cpp79 media_output output; local
80 output.node = client.node;
81 output.source = source;
82 output.destination = destination;
83 output.format = format;
84 strcpy(output.name, name);
85 return output;
H A DMediaClient.cpp63 OutputReleaser(BMediaOutput* output) argument
65 ConnReleaser(output) {}
146 BMediaClient::RegisterOutput(BMediaOutput* output) argument
148 output->_ConnectionRegistered(this, ++fLastID);
149 _AddOutput(output);
155 BMediaClient::Bind(BMediaInput* input, BMediaOutput* output) argument
160 || output == NULL)
163 if (input->fOwner != this || output->fOwner != this)
168 || output->fBind != NULL)
171 input->fBind = output;
178 Unbind(BMediaInput* input, BMediaOutput* output) argument
210 BMediaOutput* output = dynamic_cast<BMediaOutput*>(ourConnection); local
460 _AddOutput(BMediaOutput* output) argument
495 _ConnectInput(BMediaOutput* output, const media_connection& input) argument
525 _ConnectOutput(BMediaInput* input, const media_connection& output) argument
[all...]
/haiku/headers/os/locale/
H A DTextEncoding.h33 char* output, size_t& outputLength);
35 char* output, size_t& outputLength);
36 status_t Flush(char* output, size_t& outputLength);
/haiku/src/bin/keymap/
H A Dmain.cpp29 printf("usage: %s {-o <output-file>} [-[l|r] | -[b|h|c|d <input-file>]]\n"
30 " -o, --output Change output file to output-file (default: "
32 " -d, --dump Decompile key map to standard output (can be "
86 const char* output = NULL; local
99 {"output", required_argument, 0, 'o'},
117 output = optarg;
190 if (output != NULL)
191 keymap.SaveAsSource(output);
[all...]
/haiku/src/add-ons/media/media-add-ons/reader/
H A DMediaReader.cpp7 // It reads any file and produces one output,
66 strncpy(output.name,"MediaReader Output",B_MEDIA_NAME_LENGTH-1);
67 output.name[B_MEDIA_NAME_LENGTH-1] = '\0';
68 // initialize the output
69 output.node = media_node::null; // until registration
70 output.source = media_source::null; // until registration
71 output.destination = media_destination::null;
72 GetFormat(&output.format);
116 output.node = Node();
117 output
[all...]
/haiku/src/add-ons/media/media-add-ons/dvb/
H A DMediaFormat.h31 void PrintFormat(const media_output &output);
/haiku/src/bin/debug/profile/
H A DOptions.h19 output(NULL),
33 FILE* output; member in struct:Options
/haiku/src/tests/kits/locale/
H A DStringFormatTest.cpp29 BString output; local
83 output.Truncate(0);
87 result = formatter.Format(output, tests[i].number);
89 CPPUNIT_ASSERT_EQUAL(BString(tests[i].expected), output); local
114 BString output; local
119 result = formatter.Format(output, 1);
122 result = formatter.Format(output, 2);
/haiku/src/bin/
H A Dsetversion.cpp75 errorToString(BString& output, status_t error, const char *appName = NULL) argument
79 output = "-system or -app expected\n";
82 output = "you did not specify any version\n";
85 output = "major version number error\n";
88 output = "middle version number error\n";
91 output = "minor version number error\n";
94 output = "variety letter error\n";
97 output = "internal version number error\n";
100 output = "expecting -short, -long, -app or -system\n";
103 output
136 BString output; local
[all...]
/haiku/src/apps/mediaplayer/supplier/
H A DImageTrackVideoSupplier.cpp24 fFormat.u.encoded_video.output.field_rate = 0.0;
25 fFormat.u.encoded_video.output.interlace = 1;
26 fFormat.u.encoded_video.output.first_active = 0;
27 fFormat.u.encoded_video.output.orientation = B_VIDEO_TOP_LEFT_RIGHT;
28 fFormat.u.encoded_video.output.display.format = B_RGB32;
29 fFormat.u.encoded_video.output.pixel_width_aspect
32 fFormat.u.encoded_video.output.pixel_height_aspect
35 fFormat.u.encoded_video.output.display.bytes_per_row
37 fFormat.u.encoded_video.output.display.pixel_offset = 0;
38 fFormat.u.encoded_video.output
[all...]
/haiku/src/kits/locale/
H A DTextEncoding.cpp64 BTextEncoding::Decode(const char* input, size_t& inputLength, char* output, argument
68 char* target = output;
75 memcpy(output, input, inputLength);
87 ucnv_convertEx(fUtf8Converter, fConverter, &target, output + outputLength,
94 outputLength = target - output;
104 BTextEncoding::Encode(const char* input, size_t& inputLength, char* output, argument
108 char* target = output;
115 memcpy(output, input, inputLength);
127 ucnv_convertEx(fConverter, fUtf8Converter, &target, output + outputLength,
134 outputLength = target - output;
144 Flush(char* output, size_t& outputLength) argument
[all...]
/haiku/src/tests/system/kernel/unit/
H A DTestManager.cpp28 TestManager::ListTests(TestOutput& output) argument
31 Visitor(TestOutput& output) argument
33 fOutput(output),
61 } visitor(output);
63 output.Print("Available tests:\n");
/haiku/src/add-ons/media/media-add-ons/demultiplexer/
H A DMediaOutputInfo.cpp7 // output of a media node.
25 strncpy(output.name,name,B_MEDIA_NAME_LENGTH-1);
26 output.name[B_MEDIA_NAME_LENGTH-1] = '\0';
27 // initialize the output
28 output.node = media_node::null;
29 output.source = media_source::null;
30 output.destination = media_destination::null;
89 if (output.destination != media_destination::null) {
98 *out_source = output.source;
99 output
[all...]
/haiku/src/apps/tv/
H A DDeviceRoster.cpp90 media_output output; local
94 err = MediaRoster()->GetFreeOutputsFor(fDeviceInfo[i].node, &output, 1,
105 media_output output; local
109 err = MediaRoster()->GetFreeOutputsFor(fDeviceInfo[i].node, &output, 1,
120 media_output output; local
124 err = MediaRoster()->GetFreeOutputsFor(fDeviceInfo[i].node, &output, 1,
135 media_output output; local
139 err = MediaRoster()->GetFreeOutputsFor(fDeviceInfo[i].node, &output, 1,
H A DController.cpp38 status_t MediaRoster_Disconnect(const media_output &output, const media_input &input);
284 media_output output; local
290 err = gMediaRoster->GetFreeOutputsFor(dvb_node, &output, 1, &count, B_MEDIA_RAW_AUDIO);
291 HandleError("Can't find free audio output", err);
293 HandleError("No free audio output", -1);
300 err = gMediaRoster->Connect(output.source, input.destination, &fmt, &audio_output, &audio_input);
305 err = gMediaRoster->GetFreeOutputsFor(dvb_node, &output, 1, &count, B_MEDIA_RAW_VIDEO);
306 HandleError("Can't find free video output", err);
308 HandleError("No free video output", -1);
327 err = gMediaRoster->Connect(output
450 MediaRoster_Disconnect(const media_output &output, const media_input &input) argument
[all...]
/haiku/src/tests/apps/haikudepot/
H A DStorageUtilsTest.cpp31 BString output = StorageUtils::SwapExtensionOnPathComponent(input, "chai"); local
35 CPPUNIT_ASSERT_EQUAL(expected, output);

Completed in 133 milliseconds

1234567891011>>