Searched refs:result (Results 101 - 125 of 1393) sorted by relevance

1234567891011>>

/haiku/src/bin/pkgman/
H A Dcommand_refresh.cpp77 status_t result = roster.GetRepositoryNames(repositoryNames); local
78 if (result != B_OK)
79 DIE(result, "can't collect repository names");
91 status_t result; local
95 result = roster.GetRepositoryConfig(repoName, &repoConfig);
96 if (result != B_OK) {
99 WARN(result, "skipping repository-config '%s'", path.Path());
104 result = refreshRequest.Process();
105 if (result != B_OK) {
106 DIE(result, "reques
[all...]
/haiku/src/kits/storage/sniffer/
H A DRule.cpp48 bool result = true; local
52 result &= (*i)->Sniff(data);
54 return result;
64 ssize_t result = InitCheck(); local
67 if (result == B_OK) {
68 result = 0; // Just to be safe...
74 if (bytes > result)
75 result = bytes;
77 result = bytes;
83 return result;
[all...]
H A DRPatternList.cpp49 bool result = false; local
53 result |= (*i)->Sniff(data, fCaseInsensitive);
55 return result;
65 ssize_t result = InitCheck(); local
68 if (result == B_OK) {
69 result = 0; // Just to be safe...
75 if (bytes > result)
76 result = bytes;
78 result = bytes;
84 return result;
[all...]
/haiku/src/servers/registrar/
H A DPriorityMessageQueue.cpp62 bool result = (message); local
63 if (result)
64 result = Lock();
65 if (result) {
70 result = false;
74 result = false;
77 return result;
84 BMessage *result = NULL; local
87 result = info->Message();
92 return result;
99 int32 result = 0; local
[all...]
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUtils.cpp67 uint32 result = 0; local
75 result = i;
78 blockShift = result;
103 time_t result = 0;
131 result = (year - EPOCH_YEAR) * DAYSPERNYEAR + previousLeapYears;
134 result += monthLengths[i];
137 ++result;
139 result = (result + day - 1) * HOURSPERDAY;
141 result
158 long_address result; local
171 ino_t result = address.block(); local
[all...]
/haiku/src/tests/kits/locale/
H A DDateFormatTest.cpp69 status_t result; local
77 result = format.Format(buffer, 12345678, B_SHORT_DATE_FORMAT,
80 CPPUNIT_ASSERT_EQUAL(B_OK, result);
90 result = format.Format(buffer, 12345678, B_SHORT_DATE_FORMAT,
93 CPPUNIT_ASSERT_EQUAL(B_OK, result);
103 result = format.Format(buffer, 12345678, B_SHORT_DATE_FORMAT,
106 CPPUNIT_ASSERT_EQUAL(B_OK, result);
139 status_t result; local
151 result = dateFormat.Format(output, values[i].time, B_SHORT_DATE_FORMAT,
153 CPPUNIT_ASSERT_EQUAL(B_OK, result);
187 status_t result; local
210 status_t result = format.GetMonthName(1, buffer); local
280 status_t result = format.GetDayName(1, buffer); local
378 status_t result; local
409 status_t result; local
[all...]
/haiku/src/kits/storage/mime/
H A DDatabaseLocation.cpp95 status_t result = _OpenType(type, _node, index); local
96 if (result == B_OK) {
108 result = _CopyTypeNode(nodeToClone, type, _node);
109 if (result != B_OK) {
111 return result;
117 return result;
122 result = _CreateTypeNode(type, _node);
123 if (result != B_OK)
124 return result;
131 result
169 status_t result = OpenType(type, node); local
201 status_t result = OpenType(type, node); local
246 status_t result = OpenType(type, node); local
275 status_t result = OpenWritableType(type, node, true, _didCreate); local
303 status_t result = data.SetSize(message.FlattenedSize()); local
333 status_t result = OpenWritableType(type, node, false); local
389 status_t result = ReadMessageAttribute(type, kAttrInfoAttr, _info); local
425 ssize_t result = ReadAttribute(type, kShortDescriptionAttr, description, local
450 ssize_t result = ReadAttribute(type, kLongDescriptionAttr, description, local
473 status_t result = ReadMessageAttribute(type, kFileExtensionsAttr, _extensions); local
560 status_t result = OpenType(type, node); local
617 status_t result = OpenType(type, node); local
690 ssize_t result = ReadAttribute(type, kPreferredAppAttr, signature, local
716 status_t result = ReadMessageAttribute(type, kSupportedTypesAttr, _types); local
753 status_t result = _node.SetTo(_TypeToFilename(type, i)); local
778 status_t result = parent.InitCheck(); local
813 status_t result = _CreateTypeNode(type, _target); local
[all...]
/haiku/src/kits/package/
H A DRepositoryInfo.cpp85 status_t result = inherited::Archive(data, deep); local
86 if (result != B_OK)
87 return result;
90 if ((result = data->AddString(kBaseURLField, fBaseURL)) != B_OK)
91 return result;
94 if ((result = data->AddString(kNameField, fName)) != B_OK)
95 return result;
96 if ((result = data->AddString(kIdentifierField, fIdentifier)) != B_OK)
97 return result;
99 if ((result
340 status_t result = file.InitCheck(); local
[all...]
H A DValidateChecksumJob.cpp51 status_t result = fExpectedChecksumAccessor->GetChecksum(expectedChecksum); local
52 if (result != B_OK)
53 return result;
55 result = fRealChecksumAccessor->GetChecksum(realChecksum);
56 if (result != B_OK)
57 return result;
/haiku/src/apps/soundrecorder/
H A DDrawingTidbits.h32 rgb_color result; local
33 result.red = r;
34 result.green = g;
35 result.blue = b;
36 result.alpha = alpha;
38 return result;
/haiku/src/system/libroot/posix/unistd/
H A Dprocess.c65 pid_t result = _kern_setpgid(process, group); local
66 if (result >= 0)
69 RETURN_AND_SET_ERRNO(result);
78 pid_t result = _kern_setpgid(0, 0); local
79 return result >= 0 ? result : getpgrp();
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DAX88172Device.cpp156 status_t result = ASIXDevice::SetupDevice(deviceReplugged); local
157 if (result != B_OK) {
158 return result;
161 result = fMII.Init(fDevice);
163 if (result == B_OK)
166 TRACE_RET(result);
167 return result;
177 status_t result = gUSBModule->send_request(fDevice, local
181 if (result != B_OK) {
182 TRACE_ALWAYS("Error writing IPG%d: %#010x\n", i, result);
193 status_t result = WriteRXControlRegister(rxcontrol); local
260 status_t result = fMII.Read(MII_ANAR, &miiANAR); local
[all...]
/haiku/src/system/libroot/posix/wchar/
H A Dwcscoll.cpp22 int result = 0; local
23 status_t status = backend->Wcscoll(wcs1, wcs2, result);
28 return result;
45 int result = 0; local
46 status_t status = backend->Wcscoll(wcs1, wcs2, result);
51 return result;
/haiku/src/system/libroot/posix/string/
H A Dstrcoll.cpp25 int result = 0; local
26 status_t status = backend->Strcoll(a, b, result);
31 return result;
45 int result = 0; local
46 status_t status = backend->Strcoll(a, b, result);
51 return result;
/haiku/src/apps/haikudepot/tar/
H A DTarArchiveService.cpp37 status_t result = tarIo.ReadExactly(buffer, LENGTH_BLOCK); local
38 if (result == B_OK)
39 result = _ReadHeader(buffer, header);
40 return result;
54 status_t result = B_OK; local
61 while (result == B_OK
62 && B_OK == (result = tarIo.ReadExactly(
72 result = _ReadHeader(buffer, header);
77 if (result == B_OK) {
87 result
131 _ReadHeaderString(const uint8 *data, size_t maxStringLength, BString& result) argument
170 uint32 result = 0; local
184 uint32 result = 0; local
[all...]
/haiku/src/system/libroot/posix/glibc/libio/
H A Dfwide.c38 int result; local
52 result = _IO_fwide(fp, mode);
57 return result;
H A Dgetc.c37 int result; local
41 result = _IO_getc_unlocked (fp);
44 return result;
H A Dgetwc.c38 wint_t result; local
42 result = _IO_getwc_unlocked (fp);
45 return result;
H A Diofflush.c39 int result; local
43 result = _IO_SYNC (fp) ? EOF : 0;
46 return result;
H A Diofputws.c37 int result = EOF; local
43 result = 1;
46 return result;
H A Dioputs.c37 int result = EOF; local
46 result = len + 1;
51 return result;
H A Dputc.c29 int result; local
33 result = _IO_putc_unlocked (c, fp);
36 return result;
/haiku/src/tools/cppunit/cppunit/
H A DRepeatedTest.cpp26 RepeatedTest::run( TestResult *result )
30 if ( result->shouldStop() )
33 TestDecorator::run( result );
/haiku/src/system/boot/platform/openfirmware/
H A Dsupport.cpp19 int result = of_milliseconds(); local
20 return (result == OF_FAILED ? 0 : bigtime_t(result) * 1000);
/haiku/src/kits/media/
H A Drequest_data.cpp38 request_data::SendReply(status_t result, reply_data *reply, argument
41 reply->result = result;

Completed in 100 milliseconds

1234567891011>>