Searched refs:status (Results 251 - 275 of 3675) sorted by relevance

<<11121314151617181920>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/shared/
H A Drte_timers.c212 int status; local
231 status = TIMER_LIST_LOCK(list);
233 if (status != 0)
234 return status;
270 int status; local
273 status = TIMER_LIST_LOCK(list);
274 if (status != 0)
280 status = get_entry(&list->freed, &entry);
281 if (status != 0)
290 status
315 int status; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-utils.c266 *just converts what it can and returns a success status. After return,
278 enum CRStatus status = CR_OK; local
290 status = CR_OK;
414 return status;
436 enum CRStatus status = CR_OK; local
448 status = CR_OK;
516 status = CR_END_OF_INPUT_ERROR;
566 return status;
718 enum CRStatus status = CR_OK; local
723 status
758 enum CRStatus status = CR_OK; local
853 enum CRStatus status = CR_OK; local
897 enum CRStatus status = CR_OK; local
957 enum CRStatus status = CR_OK; local
1015 enum CRStatus status = CR_OK; local
1160 enum CRStatus status = CR_OK; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-utils.c266 *just converts what it can and returns a success status. After return,
278 enum CRStatus status = CR_OK; local
290 status = CR_OK;
414 return status;
436 enum CRStatus status = CR_OK; local
448 status = CR_OK;
516 status = CR_END_OF_INPUT_ERROR;
566 return status;
718 enum CRStatus status = CR_OK; local
723 status
758 enum CRStatus status = CR_OK; local
853 enum CRStatus status = CR_OK; local
897 enum CRStatus status = CR_OK; local
957 enum CRStatus status = CR_OK; local
1015 enum CRStatus status = CR_OK; local
1160 enum CRStatus status = CR_OK; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mmc/host/
H A Dmmci.c150 unsigned int status)
152 if (status & MCI_DATABLOCKEND) {
155 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
156 if (status & MCI_DATACRCFAIL)
158 else if (status & MCI_DATATIMEOUT)
160 else if (status & (MCI_TXUNDERRUN|MCI_RXOVERRUN))
162 status |= MCI_DATAEND;
171 if (status & MCI_DATAEND) {
184 unsigned int status)
195 if (status
149 mmci_data_irq(struct mmci_host *host, struct mmc_data *data, unsigned int status) argument
183 mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd, unsigned int status) argument
214 u32 status; local
239 mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status) argument
271 u32 status; local
356 u32 status; local
457 unsigned int status; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/
H A Dscan.c36 acpi_status status = AE_OK; local
59 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
60 if (ACPI_FAILURE(status)) {
74 acpi_status status; local
88 status = acpi_get_type(acpi_device->handle, &type);
89 if (ACPI_FAILURE(status) || (!acpi_device->flags.ejectable)) {
138 acpi_status status; local
161 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
162 if (ACPI_SUCCESS(status))
170 acpi_status status; local
519 acpi_status status; local
623 acpi_status status = 0; local
657 acpi_status status = 0; local
718 acpi_status status = AE_OK; local
846 acpi_status status; local
884 acpi_status status; local
968 acpi_status status = AE_OK; local
1145 acpi_status status = AE_OK; local
1296 acpi_status status; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libads/
H A Dsasl.c38 ADS_STATUS status; local
68 status = ADS_ERROR(rc);
78 status = ADS_ERROR(LDAP_OPERATIONS_ERROR);
132 return status;
172 ADS_STATUS status; local
181 status = ADS_ERROR(rc);
197 status = ADS_ERROR(LDAP_OPERATIONS_ERROR);
216 status = ads_sasl_spnego_krb5_bind(ads, principal);
217 if (ADS_ERR_OK(status)) {
219 return status;
274 ADS_STATUS status; local
432 ADS_STATUS status; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/spi/
H A Dspi.c208 int status; local
239 status = master->setup(proxy);
240 if (status < 0) {
241 dev_dbg(dev, "can't %s %s, status %d\n",
242 "setup", proxy->dev.bus_id, status);
249 status = device_register(&proxy->dev);
250 if (status < 0) {
251 dev_dbg(dev, "can't %s %s, status %d\n",
252 "add", proxy->dev.bus_id, status);
413 int status local
535 int status; local
577 int status; local
632 int status; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/kconfig/lxdialog/
H A Dchecklist.c31 static void print_item(WINDOW * win, const char *item, int status, int choice, argument
44 wprintw(win, "(%c)", status ? 'X' : ' ');
116 int key = 0, button = 0, choice = 0, scroll = 0, max_choice, *status; local
119 /* Allocate space for storing item on/off status */
120 if ((status = malloc(sizeof(int) * item_no)) == NULL) {
127 /* Initializes status */
129 status[i] = !strcasecmp(items[i * 3 + 2], "on");
130 if ((!choice && status[i])
191 status[i + scroll], i, i == choice);
221 status[scrol
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-c++-kde/admin/
H A Dcompile92 status=$?
99 exit $status
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/bin/megatron/
H A Dnad.h16 int nad_close(int status);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/rio/
H A Drup.h62 u16 status; /* Status */ member in struct:RUP
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/executer/
H A Dexfield.c70 acpi_status status; local
93 status = acpi_ds_get_buffer_field_arguments(obj_desc);
94 if (ACPI_FAILURE(status)) {
95 return_ACPI_STATUS(status);
122 status = acpi_ex_access_region(obj_desc, 0,
183 status = acpi_ex_extract_from_field(obj_desc, buffer, (u32) length);
187 if (ACPI_FAILURE(status)) {
193 return_ACPI_STATUS(status);
215 acpi_status status; local
237 status
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/tables/
H A Dtbfind.c72 acpi_status status; local
91 status =
94 if (ACPI_FAILURE(status)) {
95 return_ACPI_STATUS(status);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/init/redhat/
H A Dbgpd.init36 status)
37 status bgpd
41 echo "Usage: bgpd {start|stop|restart|status}"
H A Dospf6d.init36 status)
37 status ospf6d
41 echo "Usage: ospf6d {start|stop|restart|status}"
H A Dospfd.init36 status)
37 status ospfd
41 echo "Usage: ospfd {start|stop|restart|status}"
H A Dripd.init36 status)
37 status ripd
41 echo "Usage: ripd {start|stop|restart|status}"
H A Dripngd.init36 status)
37 status ripngd
41 echo "Usage: ripngd {start|stop|restart|status}"
H A Dzebra.init36 status)
37 status zebra
41 echo "Usage: zebra {start|stop|restart|status}"
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/9p/
H A Dtransport.h33 enum v9fs_transport_status status; member in struct:v9fs_transport
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pci/pcie/aer/
H A Daerdrv_acpi.c33 acpi_status status; local
57 status = pci_osc_control_set(handle, OSC_PCI_EXPRESS_AER_CONTROL |
59 if (ACPI_FAILURE(status)) {
60 if (status == AE_SUPPORT)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/mach-excite/
H A Dexcite_fpga.h46 excite_cci_fpga_align_t status[EXCITE_DPR_STATUS_SIZE]; member in struct:excite_fpga
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dremove_file.c33 int status = 0; local
61 status = -1;
73 return status;
81 return status;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/mach-excite/
H A Dexcite_fpga.h46 excite_cci_fpga_align_t status[EXCITE_DPR_STATUS_SIZE]; member in struct:excite_fpga
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dsmp.h30 __u32 status; member in struct:__anon9402
72 __u32 status; local
74 switch (signal_processor_ps(&status, 0, cpu, sigp_sense)) {
78 if (status & 0x50)

Completed in 302 milliseconds

<<11121314151617181920>>