Searched refs:result (Results 301 - 325 of 1393) sorted by relevance

<<11121314151617181920>>

/haiku/src/system/libroot/posix/wchar/
H A Dwcsrtombs.cpp88 size_t result = 0; local
90 ps, result);
95 result = (size_t)-1;
99 result = (size_t)-1;
102 TRACE(("wcsnrtombs returns %lx and src %p\n", result, *src));
104 return result;
/haiku/src/tests/apps/haikudepot/
H A DDataIOUtilsTest.cpp42 status_t result = base64DecodingIo.ReadExactly(actualOutputBuffer, 70, &actualReadBytes); local
45 CPPUNIT_ASSERT_EQUAL(B_OK, result);
71 status_t result = base64DecodingIo.ReadExactly(actualOutputBuffer, 76, &actualReadBytes); local
74 CPPUNIT_ASSERT_EQUAL(B_OK, result);
100 status_t result = base64DecodingIo.ReadExactly(actualOutputBuffer, 6, &actualReadBytes); local
103 CPPUNIT_ASSERT(B_OK != result);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInode.cpp76 status_t result = request.Send(); local
77 if (result != B_OK)
78 return result;
89 result = reply.GetAttr(&values, &count);
90 if (result != B_OK)
91 return result;
166 status_t result = GetChangeInfo(&change); local
167 if (result != B_OK)
168 return result;
179 result
201 status_t result = NFS4Inode::LookUp(name, &change, &fileID, &handle); local
232 status_t result = NFS4Inode::Link(dir, name, &changeInfo); local
263 status_t result = LoadAttrDirHandle(); local
275 status_t result = NFS4Inode::RemoveObject(name, type, &changeInfo, &fileID); local
322 status_t result = from->LoadAttrDirHandle(); local
345 status_t result = NFS4Inode::RenameNode(from, to, fromName, toName, local
416 status_t result = NFS4Inode::CreateObject(name, path, mode, type, local
452 status_t result = fMetaCache.GetAccess(geteuid(), &allowed); local
512 status_t result = NFS4Inode::GetStat(&values, &count, attr); local
599 status_t result; local
739 status_t result = CheckLockType(lock->l_type, cookie->fMode); local
[all...]
H A DVnodeToInode.cpp17 status_t result = fFileSystem->GetInode(fID, &fInode); local
18 if (result != B_OK)
H A DRootInode.cpp40 status_t result = _UpdateInfo(); local
41 if (result != B_OK)
42 return result;
73 status_t result = request.Send(); local
74 if (result != B_OK)
75 return result;
86 result = reply.GetAttr(&values, &count);
87 if (result != B_OK)
88 return result;
161 status_t result local
193 status_t result = request.Send(); local
[all...]
H A DRPCServer.cpp112 status_t result; local
113 wait_for_thread(fThread, &result);
129 status_t result = resume_thread(fThread);
130 if (result != B_OK) {
132 return result;
184 status_t result = fConnection->Send(stream.Buffer(), stream.Size()); local
185 if (result != B_OK) {
187 return result;
223 status_t result = fConnection->Reconnect(); local
224 if (result !
273 status_t result; local
335 status_t result; local
354 status_t result; local
[all...]
/haiku/headers/posix/
H A Dpwd.h35 size_t bufferSize, struct passwd **result);
38 size_t bufferSize, struct passwd **result);
/haiku/src/tests/system/kernel/unit/
H A DTestOutput.h42 int result = PrintArgs(format, args); local
45 return result;
/haiku/src/tests/system/libroot/posix/
H A Dinit_rld_after_fork_test.cpp33 status_t result; local
34 wait_for_thread(child, &result);
/haiku/src/apps/mail/
H A DMailSupport.cpp99 int32 result = 0; local
102 if (file->ReadAttr(B_MAIL_ATTR_HEADER, B_INT32_TYPE, 0, &result,
109 while ((length = linelen(buffer + result, size - result, true)) > 2)
110 result += length;
112 result += length;
115 file->WriteAttr(B_MAIL_ATTR_HEADER, B_INT32_TYPE, 0, &result, sizeof(int32));
118 return result;
/haiku/3rdparty/mmu_man/scripts/
H A Ddump_windows.sh6 c="$(hey "$team" count Window | grep result | cut -d" " -f 7)"
9 title="$(hey "$team" get Title of Window "$w" | sed -n 's/"$//;/"result"/s/.*TYPE) : "//p')"
10 frame="$(hey "$team" get Frame of Window "$w" | sed -n 's/)$//;/"result"/s/.*TYPE) : BRect(//p')"
/haiku/src/apps/deskcalc/
H A DDeskCalc.cpp38 BString result = parser.Evaluate(expression.String()); local
39 printf("%s\n", result.String());
/haiku/src/bin/pkgman/
H A Dcommand_list_repos.cpp87 status_t result = roster.GetRepositoryNames(repositoryNames); local
88 if (result != B_OK)
89 DIE(result, "can't collect repository names");
94 result = roster.GetRepositoryConfig(repoName, &repoConfig);
95 if (result != B_OK) {
98 WARN(result, "skipping repository-config '%s'", path.Path());
112 result = roster.GetRepositoryCache(repoName, &repoCache);
113 if (result == B_OK) {
/haiku/src/preferences/media/
H A DMediaListItem.cpp271 return comparator.result;
277 result(GREATER_THAN),
286 result = GREATER_THAN;
289 result = LESS_THAN;
291 result = strcmp(fTarget->Label(), item->Label());
298 result = LESS_THAN;
300 result = GREATER_THAN;
307 result = LESS_THAN;
314 result = GREATER_THAN;
343 return comparator.result;
[all...]
/haiku/src/add-ons/kernel/bus_managers/mmc/
H A Dmmc_module.cpp28 status_t result = device->InitCheck(); local
29 if (result != B_OK) {
31 return result;
82 uint8_t command, uint32_t argument, uint32_t* result)
89 status_t error = bus->ExecuteCommand(rca, command, argument, result);
101 status_t result = B_OK; local
104 result = bus->DoIO(rca, command, operation, offsetAsSectors);
107 return result;
81 mmc_bus_execute_command(device_node* node, void* cookie, uint16_t rca, uint8_t command, uint32_t argument, uint32_t* result) argument
/haiku/src/apps/haikudepot/util/
H A DAppUtils.h27 const BString& key, BString* result);
29 static status_t GetAppVersionString(BString& result);
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DJoystickProtocolHandler.cpp193 status_t result = mutex_lock(&fUpdateLock);
194 if (result != B_OK)
195 return result;
202 result = fUpdateThread;
207 if (result == B_OK)
211 if (result != B_OK)
212 return result;
221 status_t result = mutex_lock(&fUpdateLock); local
222 if (result == B_OK) {
281 status_t result
340 status_t result = handler->_Update(); local
352 status_t result = fReport.WaitForReport(B_INFINITE_TIMEOUT); local
[all...]
/haiku/src/add-ons/kernel/network/dns_resolver/kernel_add_on/
H A Ddns_resolver.cpp32 status_t result = B_OK; local
65 result = resume_thread(thread);
66 if (result != B_OK) {
70 return result;
161 status_t result = write_port(gPortRequest, MsgGetAddrInfo, buffer, local
163 if (result != B_OK) {
164 result = dns_resolver_repair();
165 if (result != B_OK)
166 return result;
172 result
[all...]
/haiku/src/kits/tracker/
H A DCountView.cpp142 BRect result = Bounds(); local
143 result.InsetBy(3, 4);
144 result.left = result.right - 7;
145 result.bottom = result.top + 7;
146 return result;
153 BRect result(BarberPoleInnerRect());
154 result.InsetBy(-1, -1);
155 return result;
162 BRect result = TextAndBarberPoleRect(); local
175 BRect result = Bounds(); local
[all...]
/haiku/src/bin/package_repo/
H A Dcommand_update.cpp276 status_t result = repositoryInfo.InitCheck(); local
277 if (result != B_OK) {
280 repositoryInfoFileName.String(), strerror(result));
286 result = repositoryReader.Init(sourceRepositoryFileName);
287 if (result != B_OK) {
290 strerror(result));
297 result = repositoryReader.ParseContent(&packageInfosCollector);
298 if (result != B_OK) {
301 strerror(result));
309 if ((result
[all...]
/haiku/src/add-ons/kernel/file_systems/layers/attribute_overlay/
H A Dattribute_overlay.cpp270 status_t result = fAttributeFile->InitCheck(); local
271 if (result != B_OK) {
272 if (result == B_ENTRY_NOT_FOUND) {
277 result = fAttributeFile->CreateEmpty();
278 if (result != B_OK)
279 return result;
293 status_t result = fAttributeFile->InitCheck();
294 if (result != B_OK)
295 return result;
308 status_t result
545 status_t result = vnode->ops->get_vnode_name(volume, vnode, nameBuffer, local
721 status_t result = vnode->ops->get_vnode_name(volume, vnode, nameBuffer, local
864 status_t result = entry->InitCheck(); local
1063 status_t result = SetSize(neededSize); local
1111 status_t result = B_OK; local
1128 status_t result = B_OK; local
1429 status_t result = superVnode->ops->read_dir(volume->super_volume, local
1459 status_t result = node->GetAttributeFile(&attributeFile); local
1515 status_t result = node->GetAttributeFile(&attributeFile); local
1530 status_t result = node->GetAttributeFile(&attributeFile); local
1591 status_t result = node->GetAttributeFile(&attributeFile); local
1632 status_t result = node->GetAttributeFile(&attributeFile); local
1748 status_t result = B_UNSUPPORTED; local
[all...]
/haiku/src/kits/storage/
H A DMimeType.cpp133 // Returns the result of the most recent constructor or SetTo() call
267 status_t result; local
280 err = reply.FindInt32("result", &result);
283 err = result;
297 status_t result; local
310 err = reply.FindInt32("result", &result);
313 err = result;
435 status_t result; local
480 status_t result; local
520 status_t result; local
550 status_t result; local
587 status_t result; local
627 status_t result; local
667 status_t result; local
784 status_t result; local
866 status_t result; local
926 status_t result; local
988 status_t result; local
1033 status_t result; local
1070 status_t result; local
1107 status_t result; local
1142 status_t result; local
1169 status_t result; local
1273 status_t result; local
1322 status_t result; local
[all...]
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteMessage.cpp56 status_t result = Read(code); local
57 if (result != B_OK) {
58 TRACE_ERROR("failed to read message code: %s\n", strerror(result));
59 return result;
63 result = Read(dataLeft);
64 if (result != B_OK) {
65 TRACE_ERROR("failed to read message length: %s\n", strerror(result));
66 return result;
301 status_t result = Read(length); local
302 if (result !
404 status_t result = Read(familyAndStyle); local
443 status_t result = Read(lowColor); local
534 status_t result = Read(stopCount); local
563 status_t result = Read(isIdentity); local
[all...]
/haiku/src/servers/print/
H A DPrinter.cpp235 status_t result = GetDriverName(&driver); local
236 if (result != B_OK)
237 return result;
240 result = addOn.ConfigPage(SpoolDir(), &settings);
241 if (result == B_OK) {
244 return result;
265 status_t result = GetDriverName(&driver); local
266 if (result != B_OK)
267 return result;
270 result
309 status_t result = GetDriverName(&driver); local
495 status_t result = GetDriverName(&driver); local
[all...]
/haiku/src/kits/app/
H A DKeyStore.cpp85 status_t result = _SendKeyMessage(message, &reply); local
86 if (result != B_OK)
87 return result;
174 status_t result = _SendKeyMessage(message, &reply); local
175 if (result != B_OK)
176 return result;
215 status_t result = _SendKeyMessage(message, &reply); local
216 if (result != B_OK)
217 return result;
293 status_t result local
362 status_t result = _SendKeyMessage(message, &reply); local
422 status_t result = be_roster->Launch(kKeyStoreServerSignature); local
436 status_t result = B_ERROR; local
[all...]

Completed in 493 milliseconds

<<11121314151617181920>>