Searched refs:errors (Results 1 - 25 of 28) sorted by last modified time

12

/haiku/src/add-ons/kernel/network/stack/
H A Ddatalink.cpp204 atomic_add((int32*)&device->stats.send.errors, 1);
H A Ddevice_interfaces.cpp84 atomic_add((int32*)&device->stats.receive.errors, 1);
/haiku/src/libs/bsd/
H A Dkqueue.cpp161 int errors = 0; local
174 errors++;
176 if (nevents == 0 || errors == 0) {
/haiku/src/apps/cortex/RouteApp/
H A DRouteApp.cpp446 list<BString> errors;
451 &errors);
453 if(errors.size()) {
455 for(list<BString>::iterator it = errors.begin();
456 it != errors.end(); ++it)
524 list<BString>& errors,
526 ImportContext(errors),
565 list<BString> errors; local
571 new _RouteAppImportContext(errors, routeWindow->m_routingView));
575 if(errors
523 _RouteAppImportContext( list<BString>& errors, MediaRoutingView* routingView) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A Dkernel_interface.cpp734 checker->Control().errors = 0;
H A DCheckVisitor.cpp110 // Should we fix errors? Were there any errors we can fix?
186 // We can't fix errors on this volume
217 Control().errors |= BFS_COULD_NOT_OPEN;
224 Control().errors |= BFS_NAMES_DONT_MATCH;
259 // if we are allowed to fix errors, we should remove the file
267 Control().errors |= BFS_WRONG_TYPE;
308 Control().errors |= BFS_INVALID_BPLUSTREE;
348 Control().errors = BFS_COULD_NOT_OPEN;
612 Control().errors |
[all...]
H A Dbfs_control.h53 uint32 errors; member in struct:check_control
88 /* values for the errors field */
/haiku/src/bin/network/ifconfig/
H A Difconfig.cpp612 printf("\tReceive: %d packets, %d errors, %" B_PRId64 " bytes, %d mcasts, %d "
613 "dropped\n", stats.receive.packets, stats.receive.errors,
616 printf("\tTransmit: %d packets, %d errors, %" B_PRId64 " bytes, %d mcasts, %d "
617 "dropped\n", stats.send.packets, stats.send.errors,
/haiku/src/apps/mediaconverter/
H A DMediaConverterApp.cpp112 int32 errors = 0; local
123 errors++;
134 if (errors) {
139 format.Format(alertText, errors);
142 BAlert* alert = new BAlert((errors > 1) ?
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Digc_txrx.c542 uint8_t errors = (uint8_t)(staterr >> 24); local
548 if (__predict_false(errors & (IGC_RXD_ERR_IPE | IGC_RXD_ERR_TCPE)))
H A Digc_hw.h132 u8 errors; /* Descriptor Errors */ member in struct:igc_rx_desc
/haiku/src/add-ons/kernel/drivers/disk/virtual/virtio_block/
H A Dvirtio_blk.h119 uint32_t errors; member in struct:virtio_scsi_inhdr
/haiku/src/add-ons/disk_systems/bfs/
H A DBFSAddOn.cpp250 //printf("will fix any severe errors!\n");
264 // check all files and report errors
271 if (result.errors) {
273 if ((result.errors & BFS_MISSING_BLOCKS) != 0)
275 if ((result.errors & BFS_BLOCKS_ALREADY_SET) != 0)
277 if ((result.errors & BFS_INVALID_BLOCK_RUN) != 0)
279 if ((result.errors & BFS_COULD_NOT_OPEN) != 0)
281 if ((result.errors & BFS_WRONG_TYPE) != 0)
283 if ((result.errors & BFS_NAMES_DONT_MATCH) != 0)
285 if ((result.errors
[all...]
/haiku/headers/posix/net/
H A Dif.h21 uint32_t errors; member in struct:ifreq_stream_stats
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A Digb_txrx.c522 uint8_t errors = (uint8_t)(staterr >> 24); local
528 if (__predict_false(errors & (E1000_RXD_ERR_IPE | E1000_RXD_ERR_TCPE)))
H A Dem_txrx.c609 u32 status, errors; local
613 status = errors = i = 0;
619 errors = rxd->errors;
630 if (errors & E1000_RXD_ERR_FRAME_ERR_MASK) {
649 em_receive_checksum(status, errors, ri);
732 em_receive_checksum(uint16_t status, uint8_t errors, if_rxd_info_t ri) argument
738 if (__predict_false(errors & (E1000_RXD_ERR_IPE | E1000_RXD_ERR_TCPE)))
H A De1000_hw.h419 u8 errors; /* Descriptor Errors */ member in struct:e1000_rx_desc
H A De1000_api.h130 * errors = the 8 bit error field of the Rx descriptor with EOP set
155 #define TBI_ACCEPT(a, status, errors, length, last_byte, \
158 (((errors) & E1000_RXD_ERR_FRAME_ERR_MASK) == E1000_RXD_ERR_CE) && \
/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dplugin.py39 import errors namespace
72 if arg in errors.errors:
73 err = errors.errors[arg]
80 for e in errors.errors:
81 if errors.errors[e]['value'] == i:
82 err = errors
[all...]
/haiku/src/apps/text_search/
H A DGrepper.cpp319 B_TRANSLATE("Failed to open errors pipe!"));
374 FILE* errors = fdopen(err, "r"); local
456 if (fgets(line, sizeof(line), errors) != NULL) {
478 fclose(errors);
/haiku/src/tools/bfs_shell/
H A Dcommand_checkfs.cpp54 // check all files and report errors
63 if (result.errors) {
66 if ((result.errors & BFS_MISSING_BLOCKS) != 0)
68 if ((result.errors & BFS_BLOCKS_ALREADY_SET) != 0)
70 if ((result.errors & BFS_INVALID_BLOCK_RUN) != 0)
72 if ((result.errors & BFS_COULD_NOT_OPEN) != 0)
74 if ((result.errors & BFS_WRONG_TYPE) != 0)
76 if ((result.errors & BFS_NAMES_DONT_MATCH) != 0)
78 if ((result.errors & BFS_INVALID_BPLUSTREE) != 0)
/haiku/src/apps/cortex/Persistence/
H A DImportContext.cpp47 ImportContext::ImportContext(list<BString>& errors) : argument
49 m_errors(errors),
72 list<BString>& ImportContext::errors() const { function in class:ImportContext
H A DImportContext.h65 std::list<BString>& errors);
77 std::list<BString>& errors() const;
H A DImporter.cpp96 list<BString>& errors) :
101 m_context(new ImportContext(errors)),
122 list<BString>& errors,
129 m_context(new ImportContext(errors)),
95 Importer( list<BString>& errors) argument
121 Importer( list<BString>& errors, IPersistent* rootObject, XML::DocumentType* docType) argument
H A DImporter.h65 std::list<BString>& errors);
74 std::list<BString>& errors,

Completed in 140 milliseconds

12