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

<<21222324252627282930>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/usb/
H A Dnet1080.c112 int status = usb_control_msg(dev->udev, local
119 if (status > 0)
120 status = 0;
121 if (!status)
123 return status;
216 static inline void nc_dump_status(struct usbnet *dev, u16 status) argument
219 "net1080 %s-%s status 0x%x: this (%c) PKT=%d%s%s%s; other PKT=%d%s%s%s; unspec 0x%x\n",
221 status,
225 (status & STATUS_PORT_A) ? 'A' : 'B',
226 STATUS_PACKETS_THIS(status),
260 u16 usbctl, status, ttl; local
311 u16 status; local
340 int status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dexresnte.c83 acpi_status status = AE_OK; local
145 status = acpi_ds_get_package_arguments(source_desc);
146 if (ACPI_SUCCESS(status)) {
163 status = acpi_ds_get_buffer_arguments(source_desc);
164 if (ACPI_SUCCESS(status)) {
210 status =
277 return_ACPI_STATUS(status);
H A Dutresrc.c263 acpi_status status; local
287 status = acpi_ut_validate_resource(aml, &resource_index);
288 if (ACPI_FAILURE(status)) {
289 return_ACPI_STATUS(status);
299 status =
302 if (ACPI_FAILURE(status)) {
303 return (status);
598 acpi_status status; local
611 status = acpi_ut_walk_aml_resources(obj_desc->buffer.pointer,
615 return_ACPI_STATUS(status);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/xen/interface/
H A Dgrant_table.h164 * is a negative status code.
185 int16_t status; /* GNTST_* */ member in struct:gnttab_map_grant_ref
209 int16_t status; /* GNTST_* */ member in struct:gnttab_unmap_grant_ref
228 int16_t status; /* GNTST_* */ member in struct:gnttab_setup_table
242 int16_t status; /* GNTST_* */ member in struct:gnttab_dump_table
261 int16_t status; member in struct:gnttab_transfer
302 int16_t status; member in struct:gnttab_copy
320 int16_t status; /* GNTST_* */ member in struct:gnttab_query_size
353 * Values for error status returns. All errors are -ve.
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/findutils/
H A Dxargs.c56 int status; local
58 status = spawn_and_wait(args);
59 if (status < 0) {
63 if (status == 255) {
64 bb_error_msg("%s: exited with status 255; aborting", args[0]);
68 if (WIFSTOPPED(status)) {
70 args[0], WSTOPSIG(status));
74 if (status >= 1000) {
76 args[0], status - 1000);
79 if (status)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/serial/
H A Diuu_phoenix.c199 int status = urb->status; local
203 if (status) {
204 dbg("%s - status = %d", __func__, status);
256 int status = urb->status; local
260 if (status) {
261 dbg("%s - status = %d", __func__, status);
287 int status = urb->status; local
317 int status; local
340 int status; local
364 int status; local
447 int status; local
589 int status; local
631 int status = urb->status; local
710 int status = urb->status; local
793 int status = urb->status; local
814 int status; local
844 int status; local
862 int status; local
962 int status; local
1186 int status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dsmbrun.c81 * SIGCLD signals as it also eats the exit status code. JRA.
100 int status=0; local
105 while((wpid = sys_waitpid(pid,&status,0)) < 0) {
130 if (WIFEXITED(status)) {
131 return WEXITSTATUS(status);
135 return status;
236 * SIGCLD signals as it also eats the exit status code. JRA.
251 int status = 0; local
267 while((wpid = sys_waitpid(pid, &status, 0)) < 0) {
283 if (WIFEXITED(status)) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/b43legacy/
H A Dxmit.c306 * in the tx status easier. need the actual retry limit to
450 struct ieee80211_rx_status status; local
464 memset(&status, 0, sizeof(status));
543 status.flag |= RX_FLAG_DECRYPTED;
547 status.signal = b43legacy_rssi_postprocess(dev, jssi,
553 status.rate_idx = b43legacy_plcp_get_bitrate_idx_ofdm(plcp, false);
555 status.rate_idx = b43legacy_plcp_get_bitrate_idx_cck(plcp);
556 status.antenna = !!(phystat0 & B43legacy_RX_PHYST0_ANT);
569 b43legacy_tsf_read(dev, &status
591 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status)); local
600 b43legacy_handle_txstatus(struct b43legacy_wldev *dev, const struct b43legacy_txstatus *status) argument
628 struct b43legacy_txstatus status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/et131x/
H A Det1310_eeprom.c123 static int eeprom_wait_ready(struct pci_dev *pdev, u32 *status) argument
142 if (status)
143 *status = reg;
167 u32 status; local
215 err = eeprom_wait_ready(pdev, &status);
224 if ((status & LBCIF_STATUS_GENERAL_ERROR)
236 if (status & LBCIF_STATUS_ACK_ERROR) {
295 u32 status; local
325 err = eeprom_wait_ready(pdev, &status);
329 * Regardless of error status, rea
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/hw/cxgb3/
H A Diwch_cq.c86 PDBG("%s qpid 0x%x type %d opcode %d status 0x%x wrid hi 0x%x "
138 wc->status = IB_WC_WR_FLUSH_ERR;
143 wc->status = IB_WC_SUCCESS;
146 wc->status = IB_WC_LOC_ACCESS_ERR;
149 wc->status = IB_WC_LOC_PROT_ERR;
153 wc->status = IB_WC_LOC_ACCESS_ERR;
156 wc->status = IB_WC_GENERAL_ERR;
159 wc->status = IB_WC_LOC_LEN_ERR;
163 wc->status = IB_WC_MW_BIND_ERR;
178 wc->status
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/serio/
H A Dct82c710.c113 unsigned char status; local
118 status = inb_p(CT82C710_STATUS);
120 status |= (CT82C710_ENABLE | CT82C710_RESET);
121 outb_p(status, CT82C710_STATUS);
123 status &= ~(CT82C710_RESET);
124 outb_p(status, CT82C710_STATUS);
126 status |= CT82C710_INTS_ON;
127 outb_p(status, CT82C710_STATUS); /* Enable interrupts */
131 status &= ~(CT82C710_ENABLE | CT82C710_INTS_ON);
132 outb_p(status, CT82C710_STATU
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/bluetooth/
H A Dhci_ath.c55 int status = tty->driver->ops->tiocmget(tty, NULL); local
57 if (status & TIOCM_CTS)
58 return status;
66 status = tty->driver->ops->tiocmget(tty, NULL);
71 status = tty->driver->ops->tiocmget(tty, NULL);
75 status = tty->driver->ops->tiocmget(tty, NULL);
81 return status;
86 int status; local
98 status = ath_wakeup_ar3k(tty);
99 if (!(status
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/os-Linux/
H A Dhelper.c119 int pid, status, err; local
134 CATCH_EINTR(pid = waitpid(pid, &status, __WCLONE));
141 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0))
143 "returned status 0x%x\n", status);
152 int ret, status; local
155 CATCH_EINTR(ret = waitpid(pid, &status, wflags));
160 } else if (!WIFEXITED(status) || WEXITSTATUS(status) !
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-statement.c43 enum CRStatus status = CR_OK; local
48 status = cr_doc_handler_set_ctxt (a_this, stmt);
49 g_return_if_fail (status == CR_OK);
57 enum CRStatus status = CR_OK; local
62 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) stmtptr);
63 if (status != CR_OK) {
80 enum CRStatus status = CR_OK; local
89 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) stmtptr);
90 g_return_if_fail (status == CR_OK && stmt);
125 enum CRStatus status local
145 enum CRStatus status = CR_OK; local
168 enum CRStatus status = CR_OK; local
195 enum CRStatus status = CR_OK; local
217 enum CRStatus status = CR_OK; local
235 enum CRStatus status = CR_OK; local
261 enum CRStatus status = CR_OK; local
286 enum CRStatus status = CR_OK; local
308 enum CRStatus status = CR_OK; local
341 enum CRStatus status = CR_OK; local
367 enum CRStatus status = CR_OK; local
399 enum CRStatus status = CR_OK; local
420 enum CRStatus status = CR_OK; local
450 enum CRStatus status = CR_OK; local
934 enum CRStatus status = CR_OK; local
1049 enum CRStatus status = CR_OK; local
1192 enum CRStatus status = CR_OK; local
1373 enum CRStatus status = CR_OK; local
1501 enum CRStatus status = CR_OK; local
1618 enum CRStatus status = CR_OK; local
1720 enum CRStatus status = CR_OK; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-statement.c43 enum CRStatus status = CR_OK; local
48 status = cr_doc_handler_set_ctxt (a_this, stmt);
49 g_return_if_fail (status == CR_OK);
57 enum CRStatus status = CR_OK; local
62 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) stmtptr);
63 if (status != CR_OK) {
80 enum CRStatus status = CR_OK; local
89 status = cr_doc_handler_get_ctxt (a_this, (gpointer *) stmtptr);
90 g_return_if_fail (status == CR_OK && stmt);
125 enum CRStatus status local
145 enum CRStatus status = CR_OK; local
168 enum CRStatus status = CR_OK; local
195 enum CRStatus status = CR_OK; local
217 enum CRStatus status = CR_OK; local
235 enum CRStatus status = CR_OK; local
261 enum CRStatus status = CR_OK; local
286 enum CRStatus status = CR_OK; local
308 enum CRStatus status = CR_OK; local
341 enum CRStatus status = CR_OK; local
367 enum CRStatus status = CR_OK; local
399 enum CRStatus status = CR_OK; local
420 enum CRStatus status = CR_OK; local
450 enum CRStatus status = CR_OK; local
934 enum CRStatus status = CR_OK; local
1049 enum CRStatus status = CR_OK; local
1192 enum CRStatus status = CR_OK; local
1373 enum CRStatus status = CR_OK; local
1501 enum CRStatus status = CR_OK; local
1618 enum CRStatus status = CR_OK; local
1720 enum CRStatus status = CR_OK; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/dvb-core/
H A Ddvb_ca_en50221.c198 * Check CAM status.
263 /* read the status and check for error */
416 int status; local
425 if ((status =
427 return status;
434 if ((status =
436 return status;
443 if ((status =
445 return status;
452 if ((status
590 int status; local
712 int status; local
977 int status; local
1288 int status; local
1424 int status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pci/pcie/
H A Dportdrv_core.c68 int nr_entries, status, pos, i, nvec; local
91 status = pci_enable_msix(dev, msix_entries, nr_entries);
92 if (status)
97 status = -EIO;
153 status = 0;
159 status = pci_enable_msix(dev, msix_entries, nvec);
160 if (status)
169 return status;
344 int status, capabilities, i, nr_service; local
353 status
470 int status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/spi/
H A Dspi_gpio.c227 int status = 0; local
234 status = gpio_request(cs, dev_name(&spi->dev));
235 if (status)
236 return status;
237 status = gpio_direction_output(cs, spi->mode & SPI_CS_HIGH);
240 if (!status)
241 status = spi_bitbang_setup(spi);
242 if (status) {
246 return status;
316 int status; local
386 int status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/libmsrpc/test/reg/
H A Dregkey.c30 fprintf(stderr, "Could not connect to server.\n Error: %s.\n errno: %s\n", nt_errstr(hnd->status), strerror(errno));
42 fprintf(stderr, " Could not connect to registry. %s\n", nt_errstr(hnd->status));
57 fprintf(stderr, "Could not open key %s\n Error: %s\n", rok.in.name, nt_errstr(hnd->status));
62 fprintf(stderr, "Could not close handle %s\n", nt_errstr(hnd->status));
66 fprintf(stderr, " Could not close handle. %s\n", nt_errstr(hnd->status));
H A Dregkeyenum.c44 fprintf(stderr, "Could not connect to server.\n Error: %s.\n errno: %s\n", nt_errstr(hnd->status), strerror(errno));
60 fprintf(stderr, "Could not open key %s\n Error: %s\n", rok.in.name, nt_errstr(hnd->status));
81 if(CAC_OP_FAILED(hnd->status)) {
82 fprintf(stderr, "Could not enumerate keys: %s\n", nt_errstr(hnd->status));
89 fprintf(stderr, "Could not close handle %s\n", nt_errstr(hnd->status));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/libmsrpc/test/sam/
H A Dadduser.c24 fprintf(stderr, "Could not connect to server %s. Error: %s\n", hnd->server, nt_errstr(hnd->status));
34 fprintf(stderr, "Could not open domain. Error: %s\n", nt_errstr(hnd->status));
49 fprintf(stderr, "Could not create user %s. Error: %s\n", cdu.in.name, nt_errstr(hnd->status));
64 fprintf(stderr, "Could not open user for deletion. Error: %s\n", nt_errstr(hnd->status));
75 fprintf(stderr, "Could not delete user. Error: %s\n", nt_errstr(hnd->status));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/dma/ipu/
H A Dipu_irq.c46 unsigned int status; member in struct:ipu_irq_bank
55 .status = IPU_INT_STAT_1,
58 .status = IPU_INT_STAT_2,
61 .status = IPU_INT_STAT_3,
66 .status = IPU_INT_STAT_4,
69 .status = IPU_INT_STAT_5,
158 ipu_write_reg(bank->ipu, 1UL << (map->source & 31), bank->status);
163 * ipu_irq_status() - returns the current interrupt status of the specified IRQ.
164 * @irq: interrupt line to get status for.
177 ret = bank && ipu_read_reg(bank->ipu, bank->status)
273 u32 status; local
314 u32 status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/sysdev/bestcomm/
H A Dbestcomm.h21 * @status: The current status of this buffer. Exact meaning depends on the
29 u32 status; member in struct:bcom_bd
167 return !(bd->status & BCOM_BD_READY);
171 * bcom_prepare_next_buffer - clear status of next available buffer.
182 bd->status = 0; /* cleanup last status */
193 bd->status |= BCOM_BD_READY;
206 *p_status = bd->status;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dvda_h264.c83 int status; local
88 status = ff_vda_decoder_decode(vda_ctx, pic_ctx->bitstream,
92 if (status)
93 av_log(avctx, AV_LOG_ERROR, "Failed to decode frame (%d)\n", status);
97 return status;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s5pv310/
H A Dirq-combiner.c57 unsigned long status; local
63 status = __raw_readl(chip_data->base + COMBINER_INT_STATUS);
66 if (status == 0)
70 if (status & 0x1)
72 status >>= 1;

Completed in 138 milliseconds

<<21222324252627282930>>