Searched refs:status (Results 501 - 525 of 1750) sorted by relevance

<<21222324252627282930>>

/haiku/src/add-ons/kernel/drivers/audio/usb/
H A DDriver.cpp53 status_t status = audioDevice->InitCheck();
54 if (status < B_OK) {
56 return status;
59 status = audioDevice->SetupDevice(false);
60 if (status < B_OK) {
62 return status;
118 status_t status = get_module(B_USB_MODULE_NAME, local
120 if (status < B_OK)
121 return status;
179 status_t status local
[all...]
/haiku/src/add-ons/kernel/drivers/audio/hda/
H A Ddevice.cpp31 status_t status = hda_hw_init(controller);
32 if (status != B_OK)
33 return status;
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DDirectoryIterator.cpp96 status_t status = _GetNext(utf16Name, &utf16CodeUnitCount, _id, visitor); local
97 if (status == B_OK && utf16CodeUnitCount > 0) {
101 status = (status_t)lengthOrStatus;
102 if (status == B_NAME_TOO_LONG)
108 if (status == B_OK) {
112 } else if (status != B_ENTRY_NOT_FOUND) {
113 ERROR("DirectoryIterator::GetNext() (%s)\n", strerror(status));
116 return status;
217 status_t status; local
220 while ((status
[all...]
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DAttributeIterator.cpp54 status_t status = fIterator->GetPreviousEntry((void**)&entries, local
56 if (status != B_OK)
57 return status;
/haiku/src/kits/shared/
H A DJsonWriter.cpp28 BJsonWriter::HandleError(status_t status, int32 line, argument
34 fErrorStatus = status;
36 strerror(status), message);
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DConfigView.cpp72 status_t status = fFileView->SaveInto(settings); local
73 if (status != B_OK)
74 return status;
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DConfigView.cpp68 status_t status = fFileView->SaveInto(settings); local
69 if (status != B_OK)
70 return status;
/haiku/src/servers/launch/
H A DLog.h74 void JobIgnored(Job* job, status_t status);
76 void JobLaunched(Job* job, status_t status);
77 void JobTerminated(Job* job, status_t status);
/haiku/src/bin/
H A Dsetversion.cpp326 status_t status = file.SetTo(argv[1], B_READ_WRITE); local
327 if (status != B_OK)
328 errorOut(status, argv[1], false);
331 status = info.SetTo(&file);
332 if (status != B_OK)
333 errorOut(status, argv[1], false);
348 status = info.SetVersionInfo(&appVersion, B_APP_VERSION_KIND);
349 if (status < B_OK)
350 errorOut(status, NULL, false);
354 status
[all...]
H A Dreindex.cpp77 status_t status = node->GetAttrInfo(fName.String(), &info); local
78 if (status != B_OK)
79 return status;
185 status_t status = node->SetTo(entry); local
186 if (status != B_OK) {
188 strerror(status));
213 status = attr->ReadFromFile(node);
214 if (status != B_OK) {
216 "\"%s\": %s\n", kProgramName, attrName, name, strerror(status));
252 status
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/usb_ecm/
H A DECMDevice.h34 static void _ReadCallback(void *cookie, int32 status,
36 static void _WriteCallback(void *cookie, int32 status,
38 static void _NotifyCallback(void *cookie, int32 status,
/haiku/src/add-ons/kernel/drivers/network/ether/usb_rndis/
H A DDriver.cpp44 status_t status = rndisDevice->InitCheck(); local
45 if (status < B_OK) {
48 return status;
109 status_t status = get_module(B_USB_MODULE_NAME, local
111 if (status < B_OK)
112 return status;
168 status_t status = ENODEV; local
171 status = gRNDISDevices[index]->Open();
172 if (status == B_OK)
177 return status;
224 status_t status = device->Free(); local
[all...]
/haiku/src/apps/debugger/user_interface/gui/teams_window/
H A DTeamsWindow.cpp330 status_t status = _OpenSettings(file, B_READ_ONLY); local
331 if (status < B_OK)
332 return status;
342 status_t status = _OpenSettings(file, local
345 if (status < B_OK)
346 return status;
349 status = settings.AddRect("teams window frame", Frame());
350 if (status != B_OK)
351 return status;
353 if (status
[all...]
/haiku/src/add-ons/tracker/zipomatic/
H A DZipperThread.h40 virtual void ThreadStartupFailed(status_t status);
41 virtual void ExecuteUnitFailed(status_t status);
42 virtual void ThreadShutdownFailed(status_t status);
/haiku/src/kits/interface/
H A DDecimalSpinner.cpp178 status_t status = BAbstractSpinner::Archive(data, deep); local
181 if (status == B_OK)
182 status = data->AddDouble("_min", fMinValue);
184 if (status == B_OK)
185 status = data->AddDouble("_max", fMaxValue);
187 if (status == B_OK)
188 status = data->AddUInt32("_precision", fPrecision);
190 if (status == B_OK)
191 status = data->AddDouble("_step", fStep);
193 if (status
[all...]
/haiku/src/add-ons/kernel/busses/random/virtio/
H A Dvirtio_rng.cpp73 status_t status = device->InitCheck();
74 if (status < B_OK) {
76 return status;
/haiku/src/tests/system/kernel/device_manager/playground/
H A Ddevice_manager.cpp310 status_t status = device->InitDevice(); local
311 if (status != B_OK) {
313 strerror(status));
380 status_t status = newNode->InitCheck(); local
381 if (status != B_OK)
398 status = newNode->Register(parent);
399 if (status < B_OK) {
411 return status;
906 status_t status = get_module(ModuleName(), (module_info**)&fDeviceModule); local
907 if (status
1056 status_t status = get_module(ModuleName(), (module_info**)&fDriver); local
1145 status_t status = InitDriver(); local
1213 status_t status = get_module(attr->value.string, local
1359 status_t status = read_next_module_name(list, name, &nameLength); local
1857 status_t status = _get_builtin_dependencies(); local
[all...]
/haiku/src/add-ons/kernel/generic/mpu401/
H A Dmpu401.c282 cpu_status status __attribute__((unused)); local
305 status = lock();
318 unlock(status);
407 cpu_status status; local
415 status = lock();
418 unlock(status);
423 status = lock();
426 unlock(status);
430 status = lock();
432 unlock(status);
447 cpu_status status; local
560 cpu_status status = disable_interrupts(); local
566 unlock(cpu_status status) argument
[all...]
/haiku/src/add-ons/kernel/network/stack/
H A Dutility.cpp234 status_t status; local
244 status = B_NO_MEMORY;
253 status = B_OK;
266 status = acquire_sem_etc(fifo->notify, 1,
268 if (status < B_OK)
269 return status;
279 return status;
311 status_t status = base_fifo_enqueue_buffer(fifo, buffer); local
312 if (status < B_OK)
317 return status;
327 status_t status = B_OK; local
514 status_t status = B_OK; local
550 status_t status; local
[all...]
H A Ddatalink.cpp195 update_device_send_stats(struct net_device* device, status_t status, size_t packetSize) argument
197 if (status == B_OK) {
201 if (status == ENOBUFS || status == EMSGSIZE)
243 status_t status = add_interface_address(interface, domain, local
248 return status;
257 status_t status = add_interface(request.ifra_name, domain, request,
261 return status;
275 status_t status = B_OK;
279 status
306 status_t status local
399 status_t status = fifo_enqueue_buffer( local
444 status_t status; local
713 status_t status = protocol->device_module->send_data(protocol->device, buffer); local
809 status_t status = fill_address( local
[all...]
/haiku/src/tests/add-ons/kernel/network/
H A Duserland_ipc.c174 status_t status; local
190 status = write_port(cc->socket_event_port, NET_STACK_SOCKET_EVENT_NOTIFICATION,
192 if (status != B_OK)
194 strerror(status));
210 status_t status = B_OK; local
253 status = core->socket_init(&cookie->socket);
254 if (status == 0)
255 status = core->socket_create(cookie->socket, args->u.socket.family, args->u.socket.type, args->u.socket.proto);
261 status = core->socket_getsockopt(cookie->socket, args->u.sockopt.level, args->u.sockopt.option,
265 status
[all...]
/haiku/src/add-ons/kernel/busses/usb/
H A Duhci.cpp279 descriptor->status, descriptor->token);
380 fStrayDescriptor->status = 0;
786 uint16 status = ReadReg16(UHCI_USBSTS); local
787 TRACE("current loop %" B_PRId32 ", status 0x%04x\n", i, status);
789 if (status & UHCI_USBSTS_HCHALT)
819 TRACE("controller is started. status: %u curframe: %u\n",
908 uint32 status = descriptor->status; local
909 if (status
1513 uint32 status = descriptor->status; local
1865 GetPortStatus(uint8 index, usb_port_status *status) argument
1956 uint16 status = ReadReg16(port); local
2015 uint16 status = ReadReg16(UHCI_USBSTS); local
2296 status_t status = generic_memcpy( local
2357 status_t status = generic_memcpy( local
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DQuery.cpp387 status_t status = nodeGetter.SetTo(inode); local
388 if (status != B_OK)
389 return status;
420 status_t status = nodeGetter.SetTo(inode); local
421 if (status != B_OK)
422 return status;
457 status_t status = _ConvertValue(type); local
458 if (status == B_OK)
459 status = _CompareTo(buffer, size) ? MATCH_OK : NO_MATCH;
464 RETURN_ERROR(status);
486 status_t status = index.SetTo(fAttribute); local
[all...]
/haiku/headers/os/bluetooth/HCI/
H A DbtHCI_command.h30 uint8 status; member in struct:hci_rp_read_loc_version
40 uint8 status; member in struct:hci_rp_read_loc_features
46 uint8 status; member in struct:hci_rp_read_buffer_size
55 uint8 status; member in struct:hci_rp_read_bd_addr
80 uint8 status; member in struct:hci_read_stored_link_key_reply
93 uint8 status; member in struct:hci_write_stored_link_key_reply
105 uint8 status; member in struct:hci_rp_read_local_name
113 uint8 status; member in struct:hci_rp_read_page_timeout
120 uint8 status; member in struct:hci_read_scan_enable
167 uint8 status; member in struct:hci_read_dev_class_reply
178 uint8 status; member in struct:hci_rp_read_voice_setting
260 uint8 status; member in struct:hci_cp_link_key_reply_reply
318 uint8 status; member in struct:hci_rp_role_discovery
345 uint8 status; member in struct:hci_rp_read_link_policy
362 uint8 status; member in struct:hci_rp_write_link_policy
[all...]
/haiku/src/add-ons/kernel/drivers/dvb/cx23882/
H A Di2c_core.c260 status_t status; local
266 status = i2c_start_address(bus, address, 1 /* 1 = read, 0 = write */);
267 if (status != B_OK) {
268 TRACE("i2c_read: error on i2c_start_address: %s\n", strerror(status));
269 return status;
305 status_t status; local
311 status = i2c_start_address(bus, address, 0 /* 1 = read, 0 = write */);
312 if (status != B_OK) {
313 TRACE("i2c_write: error on i2c_start_address: %s\n", strerror(status));
314 return status;
[all...]

Completed in 254 milliseconds

<<21222324252627282930>>