Searched refs:status (Results 201 - 225 of 6357) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/power/
H A Dsuspend_test.c70 int status; local
73 status = rtc_read_time(rtc, &alm.time);
74 if (status < 0) {
75 printk(err_readtime, dev_name(&rtc->dev), status);
84 status = rtc_set_alarm(rtc, &alm);
85 if (status < 0) {
86 printk(err_wakealarm, dev_name(&rtc->dev), status);
92 status = pm_suspend(state);
93 if (status == -ENODEV)
98 status
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/kernel/
H A Dacpi-ext.c34 acpi_status status; local
39 status = acpi_get_vendor_resource(obj, METHOD_NAME__CRS, &hp_ccsr_uuid,
45 if (ACPI_FAILURE(status) || vendor->byte_length < 16) {
46 status = AE_NOT_FOUND;
55 return status;
67 acpi_status status; local
69 status = acpi_resource_to_address64(resource, &addr);
70 if (ACPI_SUCCESS(status) &&
96 acpi_status status; local
98 status
[all...]
H A Duncached.c39 atomic_t status; /* smp called function's return status*/ member in struct:uncached_pool
49 int status; local
52 status = ia64_pal_prefetch_visibility(PAL_VISIBILITY_PHYSICAL);
53 if ((status != PAL_VISIBILITY_OK) &&
54 (status != PAL_VISIBILITY_OK_REMOTE_NEEDED))
55 atomic_inc(&uc_pool->status);
61 int status; local
64 status = ia64_pal_mc_drain();
65 if (status !
82 int status, i, nchunks_added = uc_pool->nchunks_added; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/coreutils/
H A Dtouch.c28 int status = EXIT_SUCCESS; local
51 status = EXIT_FAILURE;
56 return status;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dnsaccess.c68 acpi_status status; local
76 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
77 if (ACPI_FAILURE(status)) {
78 return_ACPI_STATUS(status);
86 status = AE_OK;
110 status = acpi_ns_lookup(NULL, init_val->name, init_val->type,
114 if (ACPI_FAILURE(status) || (!new_node)) { /* Must be on same line for code converter */
115 ACPI_EXCEPTION((AE_INFO, status,
125 status = acpi_os_predefined_override(init_val, &val);
126 if (ACPI_FAILURE(status)) {
288 acpi_status status; local
[all...]
H A Dnseval.c87 acpi_status status; local
108 status = acpi_ns_get_node(info->prefix_node, info->pathname,
110 if (ACPI_FAILURE(status)) {
111 return_ACPI_STATUS(status);
181 status = acpi_ps_execute_method(info);
229 status =
237 if (ACPI_SUCCESS(status)) {
238 status = AE_CTRL_RETURN_VALUE;
257 status, &info->return_object);
261 if (status
372 acpi_status status; local
[all...]
H A Dnspredef.c138 acpi_status status = AE_OK; local
190 status = AE_AML_NO_RETURN_VALUE;
222 status = acpi_ns_check_object_type(data, return_object_ptr,
225 if (ACPI_FAILURE(status)) {
235 status = acpi_ns_check_package(data, return_object_ptr);
236 if (ACPI_FAILURE(status)) {
249 status = acpi_ns_complex_repairs(data, node, status, return_object_ptr);
257 if (ACPI_FAILURE(status) || (data->flags & ACPI_OBJECT_REPAIRED)) {
264 return (status);
424 acpi_status status = AE_OK; local
699 acpi_status status; local
901 acpi_status status; local
956 acpi_status status = AE_OK; local
[all...]
H A Dexresop.c139 acpi_status status = AE_OK; local
321 status =
324 if (ACPI_FAILURE(status)) {
325 return_ACPI_STATUS(status);
353 status = acpi_ex_resolve_to_value(stack_ptr, walk_state);
354 if (ACPI_FAILURE(status)) {
355 return_ACPI_STATUS(status);
415 status =
417 if (ACPI_FAILURE(status)) {
418 if (status
[all...]
H A Dpsloop.c83 union acpi_parse_object **op, acpi_status status);
87 union acpi_parse_object *op, acpi_status status);
184 acpi_status status = AE_OK; local
199 status =
204 if (ACPI_FAILURE(status)) {
205 return_ACPI_STATUS(status);
229 status = walk_state->descending_callback(walk_state, op);
230 if (ACPI_FAILURE(status)) {
231 ACPI_EXCEPTION((AE_INFO, status, "During name lookup/catalog"));
232 return_ACPI_STATUS(status);
287 acpi_status status = AE_OK; local
395 acpi_status status = AE_OK; local
692 acpi_ps_complete_op(struct acpi_walk_state *walk_state, union acpi_parse_object **op, acpi_status status) argument
857 acpi_ps_complete_final_op(struct acpi_walk_state *walk_state, union acpi_parse_object *op, acpi_status status) argument
966 acpi_status status = AE_OK; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mmc/host/
H A Dmmc_spi.c118 u8 status[29]; member in struct:scratch
136 /* for status readback */
137 struct spi_transfer status; member in struct:mmc_spi_host
171 int status; local
178 host->status.len = len;
185 status = spi_sync_locked(host->spi, &host->readback);
192 return status;
198 u8 *cp = host->data->status;
202 int status; local
205 status
450 int status; local
676 int status, i; local
786 int status; local
915 int status = 0; local
1057 int status = -EINVAL; local
1226 int status; local
1287 int status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/
H A Dpci_root.c179 acpi_status status; local
182 status =
185 if (ACPI_FAILURE(status))
186 return status;
194 int status; local
199 status = device->parent->ops.bind(device);
200 if (!status) {
218 acpi_status status; local
220 status = acpi_run_osc(handle, &context);
221 if (ACPI_SUCCESS(status)) {
232 acpi_status status; local
259 acpi_status status; local
304 acpi_status status; local
393 acpi_status status; local
449 acpi_status status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/core/
H A Dchnl_sm.c96 int status = 0; local
112 status = -EFAULT;
114 status = -EPERM;
123 status = -ECANCELED;
126 status = -EPIPE;
136 status = -EFAULT;
138 if (status)
149 status = -ENOMEM;
153 status = copy_from_user(host_sys_buf, host_buf,
155 if (status) {
254 int status = 0; local
319 int status; local
388 int status = 0; local
448 int status = 0; local
484 int status = 0; local
537 int status = 0; local
571 int status = 0; local
714 int status = 0; local
751 int status = 0; local
780 int status = 0; local
910 int status = 0; local
1000 int status = -ENOSR; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/adis16255/
H A Dadis16255.c197 int status; local
200 status = spi_adis16255_read_data(spiadis, ADIS_GYRO_OUT, (u8 *)&value);
201 if (status != 0) {
249 int status = 0; local
253 status = spi_adis16255_read_data(spiadis, ADIS_SMPL_PRD_MSB,
255 if (status != 0)
298 int status = 0; local
301 status = spi_adis16255_read_data(spiadis, ADIS_GYRO_SCALE,
303 if (status != 0)
312 status
369 int status = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/ipmi/
H A Dipmi_kcs_sm.c188 #define GET_STATUS_STATE(status) (((status) >> 6) & 0x03)
193 #define GET_STATUS_ATN(status) ((status) & 0x04)
194 #define GET_STATUS_IBF(status) ((status) & 0x02)
195 #define GET_STATUS_OBF(status) ((status) & 0x01)
232 static inline int check_ibf(struct si_sm_data *kcs, unsigned char status, argument
235 if (GET_STATUS_IBF(status)) {
248 check_obf(struct si_sm_data *kcs, unsigned char status, long time) argument
263 clear_obf(struct si_sm_data *kcs, unsigned char status) argument
347 unsigned char status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/libads/
H A Dldap_schema.c31 ADS_STATUS status; local
62 status = ads_do_search_retry(ads, schema_path,
64 if (!ADS_ERR_OK(status)) {
65 return status;
70 status = ADS_ERROR_NT(NT_STATUS_NONE_MAPPED);
75 status = ADS_ERROR(LDAP_NO_MEMORY);
79 status = ADS_ERROR(LDAP_NO_MEMORY);
91 status = ADS_ERROR(LDAP_NO_MEMORY);
99 status = ADS_ERROR_NT(STATUS_SOME_UNMAPPED);
103 status
157 ADS_STATUS status; local
195 ADS_STATUS status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Dssl_task.c164 unsigned short status; member in struct:io_status
175 int status; local
177 status = SYS$QIOW(0, chan, IO$_READVBLK, &iosb, 0, 0,
179 if ((status & 1) == 1)
180 status = iosb.status;
181 if ((status & 1) == 1)
183 return status;
188 int status; local
190 status
209 int status, length; local
275 int status, length, link_state; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/dvb-usb/
H A DcinergyT2-fe.c146 fe_status_t *status)
158 *status = 0;
161 *status |= FE_HAS_SIGNAL;
163 *status |= FE_HAS_LOCK;
165 *status |= FE_HAS_SYNC;
167 *status |= FE_HAS_CARRIER;
169 *status |= FE_HAS_VITERBI;
171 if ((*status & (FE_HAS_CARRIER | FE_HAS_VITERBI | FE_HAS_SYNC)) !=
173 *status &= ~FE_HAS_LOCK;
181 struct dvbt_get_status_msg status; local
145 cinergyt2_fe_read_status(struct dvb_frontend *fe, fe_status_t *status) argument
197 struct dvbt_get_status_msg status; local
216 struct dvbt_get_status_msg status; local
234 struct dvbt_get_status_msg status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfs/
H A Dnfs3proc.c65 int status; local
69 status = rpc_call_sync(client, &msg, 0);
70 dprintk("%s: reply fsinfo: %d\n", __func__, status);
74 status = rpc_call_sync(client, &msg, 0);
75 dprintk("%s: reply getattr: %d\n", __func__, status);
77 return status;
87 int status; local
89 status = do_proc_get_root(server->client, fhandle, info);
90 if (status && server->nfs_client->cl_rpcclient != server->client)
91 status
107 int status; local
130 int status; local
161 int status; local
195 int status = -ENOMEM; local
248 int status = -ENOMEM; local
297 int status; local
320 int status = -ENOMEM; local
409 int status = -ENOMEM; local
459 int status = -ENOMEM; local
493 int status = -ENOMEM; local
516 int status = -ENOMEM; local
547 int status = -ENOMEM; local
587 int status = -ENOMEM; local
636 int status = -ENOMEM; local
665 int status = -ENOMEM; local
720 int status; local
738 int status; local
755 int status; local
772 int status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/et131x/
H A Det131x_isr.c159 u32 status; local
175 /* Get a copy of the value in the interrupt status register
178 status = readl(&adapter->regs->global.int_status);
182 status &= ~INT_MASK_ENABLE;
184 status &= ~INT_MASK_ENABLE_NO_FLOW;
188 if (!status) {
196 if (status & ET_INTR_WATCHDOG) {
201 status |= ET_INTR_TXDMA_ISR;
204 status |= ET_INTR_RXDMA_XFR_DONE;
208 status
247 u32 status = etdev->Stats.InterruptStatus; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/ssl/
H A Dssl_task.c159 unsigned short status; member in struct:io_status
169 int status; local
171 status = SYS$QIOW ( 0, chan, IO$_READVBLK, &iosb, 0, 0,
173 if ( (status&1) == 1 ) status = iosb.status;
174 if ( (status&1) == 1 ) *length = iosb.count;
175 return status;
180 int status; local
182 status
197 int status, length; local
259 int status, length, link_state; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Dssl_task.c164 unsigned short status; member in struct:io_status
175 int status; local
177 status = SYS$QIOW(0, chan, IO$_READVBLK, &iosb, 0, 0,
179 if ((status & 1) == 1)
180 status = iosb.status;
181 if ((status & 1) == 1)
183 return status;
188 int status; local
190 status
209 int status, length; local
275 int status, length, link_state; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/platform/x86/
H A Dintel_menlow.c71 acpi_status status = AE_OK; local
77 status = acpi_evaluate_integer(handle, MEMORY_GET_BANDWIDTH,
79 if (ACPI_FAILURE(status))
97 acpi_status status = AE_OK; local
103 status = acpi_evaluate_integer(handle, MEMORY_GET_BANDWIDTH,
105 if (ACPI_FAILURE(status))
119 acpi_status status; local
134 status =
139 "Bandwidth value was %ld: status is %d\n", state, status);
158 acpi_status status = AE_OK; local
260 acpi_status status; local
281 acpi_status status; local
381 acpi_status status; local
426 acpi_status status; local
505 acpi_status status; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/libmsrpc/
H A Dcac_lsarpc.c36 hnd->status = NT_STATUS_INVALID_HANDLE;
41 hnd->status = NT_STATUS_INVALID_PARAMETER;
49 hnd->status = NT_STATUS_INVALID_CONNECTION;
57 &hnd->status );
60 hnd->status = NT_STATUS_UNSUCCESSFUL;
69 hnd->status = NT_STATUS_INVALID_HANDLE;
76 hnd->status = NT_STATUS_NO_MEMORY;
80 /*need to make sure that our nt status is good otherwise check might fail below */
81 hnd->status = NT_STATUS_OK;
88 hnd->status
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/rmgr/
H A Ddbdcd.c86 int status = 0; local
91 status = dcd_get_objects(hdcd_mgr, sz_coff_path,
95 status = -EFAULT;
97 return status;
108 int status = 0; local
113 status = dcd_get_objects(hdcd_mgr, sz_coff_path,
117 status = -EFAULT;
119 return status;
132 int status = 0; local
137 status
174 int status = -EFAULT; local
199 int status = 0; local
334 int status = 0; local
357 int status = 0; local
384 int status = 0; local
541 int status = 0; local
655 int status = 0; local
819 int status = 0; local
980 int status = 0; local
1044 int status = 0; local
1418 int status = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpio/
H A Dtwl4030-gpio.c134 int status; local
144 status = twl_i2c_write_u8(TWL4030_MODULE_LED, cached_leden,
208 int status = 0; local
225 status = twl_i2c_write_u8(module, 0x7f,
227 if (status < 0)
229 status = twl_i2c_write_u8(module, 0x7f,
231 if (status < 0)
236 status = twl_i2c_read_u8(module, &cached_leden,
238 if (status < 0)
241 status
299 int status = 0; local
451 int status; local
466 int status; local
[all...]

Completed in 314 milliseconds

1234567891011>>