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

<<21222324252627282930>>

/linux-master/sound/core/
H A Dump_convert.c105 unsigned char status = midi2->note.status; local
109 buf[0] = (status << 4) | channel;
110 switch (status) {
115 if (status == UMP_MSG_STATUS_NOTE_ON && !buf[2])
151 buf[1] = status == UMP_MSG_STATUS_RPN ? UMP_CC_RPN_MSB : UMP_CC_NRPN_MSB;
154 buf[4] = status == UMP_MSG_STATUS_RPN ? UMP_CC_RPN_LSB : UMP_CC_NRPN_LSB;
172 unsigned char status; local
176 status = ump_sysex_message_status(*data);
177 if (status > UMP_SYSEX_STATUS_EN
248 unsigned char status; local
320 unsigned char status, channel; local
[all...]
/linux-master/net/mac80211/
H A Dstatus.c117 * (4) we get TX status before having processed the frame and
122 * even at the same time because we queue both TX status events and
124 * same order that they were received or TX status last. Hence, there
126 * status, which drivers can ensure, see below.
135 * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
137 * (b) always process RX events before TX status events if ordering
138 * can be unknown, for example with different interrupt status
142 * changes before calling TX status events if ordering can be
210 struct ieee80211_tx_status *status)
215 if (status
209 ieee80211_tx_radiotap_len(struct ieee80211_tx_info *info, struct ieee80211_tx_status *status) argument
257 ieee80211_add_tx_radiotap_header(struct ieee80211_local *local, struct sk_buff *skb, int retry_count, int rtap_len, struct ieee80211_tx_status *status) argument
613 struct cfg80211_tx_status status = { local
897 ieee80211_tx_monitor(struct ieee80211_local *local, struct sk_buff *skb, int retry_count, bool send_to_cooked, struct ieee80211_tx_status *status) argument
954 __ieee80211_tx_status(struct ieee80211_hw *hw, struct ieee80211_tx_status *status, int rates_idx, int retry_count) argument
1119 struct ieee80211_tx_status status = { local
1136 ieee80211_tx_status_ext(struct ieee80211_hw *hw, struct ieee80211_tx_status *status) argument
1266 struct ieee80211_tx_status status = { local
[all...]
/linux-master/drivers/acpi/acpica/
H A Dutmisc.c201 acpi_status status = AE_OK; local
236 status =
239 if (ACPI_FAILURE(status)) {
240 return_ACPI_STATUS(status);
276 status =
279 if (ACPI_FAILURE(status)) {
280 return_ACPI_STATUS(status);
335 acpi_status status; local
349 status = acpi_ns_handle_to_pathname(obj_handle, &buffer, TRUE);
350 if (ACPI_FAILURE(status)) {
[all...]
/linux-master/drivers/usb/gadget/legacy/
H A Dgmidi.c126 int status; local
132 status = usb_add_function(c, f_midi);
133 if (status < 0) {
135 return status;
144 int status; local
158 status = usb_string_ids_tab(cdev, strings_dev);
159 if (status < 0)
165 status = usb_add_config(cdev, &midi_config, midi_bind_config);
166 if (status < 0)
173 return status;
[all...]
H A Dmulti.c305 int status; local
330 status = PTR_ERR(fi_rndis);
351 status = gether_register_netdev(ecm_opts->net);
352 if (status)
362 status = PTR_ERR(fi_acm);
369 status = PTR_ERR(fi_msg);
376 status = fsg_common_set_num_buffers(fsg_opts->common, fsg_num_buffers);
377 if (status)
380 status = fsg_common_set_cdev(fsg_opts->common, cdev, config.can_stall);
381 if (status)
[all...]
/linux-master/drivers/net/wireless/broadcom/b43legacy/
H A Dxmit.c281 * in the tx status easier. need the actual retry limit to
422 struct ieee80211_rx_status status; local
436 memset(&status, 0, sizeof(status));
515 status.flag |= RX_FLAG_DECRYPTED;
519 status.signal = b43legacy_rssi_postprocess(dev, jssi,
525 status.rate_idx = b43legacy_plcp_get_bitrate_idx_ofdm(plcp, false);
527 status.rate_idx = b43legacy_plcp_get_bitrate_idx_cck(plcp);
528 status.antenna = !!(phystat0 & B43legacy_RX_PHYST0_ANT);
541 b43legacy_tsf_read(dev, &status
564 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status)); local
573 b43legacy_handle_txstatus(struct b43legacy_wldev *dev, const struct b43legacy_txstatus *status) argument
601 struct b43legacy_txstatus status; local
[all...]
/linux-master/tools/testing/selftests/x86/
H A Dfsgsbase_restore.c182 int status; local
185 if (waitpid(chld, &status, 0) != chld || !WIFSTOPPED(status))
214 if (waitpid(chld, &status, 0) != chld || !WIFSTOPPED(status))
224 if (waitpid(chld, &status, 0) != chld)
227 if (WIFSIGNALED(status)) {
232 if (!WIFEXITED(status)) {
233 printf("[FAIL]\tTracee stopped for an unexpected reason: %d\n", status);
237 int exitcode = WEXITSTATUS(status);
[all...]
/linux-master/tools/perf/arch/x86/tests/
H A Dbp-modify.c62 int status; local
67 waitpid(child, &status, 0);
68 if (WIFEXITED(status)) {
106 waitpid(child, &status, 0);
107 if (WIFEXITED(status)) {
139 int status; local
144 waitpid(child, &status, 0);
145 if (WIFEXITED(status)) {
182 waitpid(child, &status, 0);
183 if (WIFEXITED(status)) {
[all...]
/linux-master/drivers/i2c/
H A Di2c-core-smbus.c105 int status; local
107 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
110 return (status < 0) ? status : data.byte;
140 int status; local
142 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
145 return (status < 0) ? status : data.byte;
180 int status; local
182 status
228 int status; local
271 int status; local
337 int status; local
644 int status; local
[all...]
/linux-master/include/xen/interface/
H A Dgrant_table.h267 * that must be presented later to destroy the mapping(s). On error, <status>
268 * is a negative status code.
288 int16_t status; /* GNTST_* */ member in struct:gnttab_map_grant_ref
311 int16_t status; /* GNTST_* */ member in struct:gnttab_unmap_grant_ref
329 int16_t status; /* GNTST_* */ member in struct:gnttab_setup_table
342 int16_t status; /* GNTST_* */ member in struct:gnttab_dump_table
361 int16_t status; member in struct:gnttab_transfer
401 int16_t status; member in struct:gnttab_copy
418 int16_t status; /* GNTST_* */ member in struct:gnttab_query_size
439 int16_t status; /* GNTST member in struct:gnttab_unmap_and_replace
472 int16_t status; /* GNTST_* */ member in struct:gnttab_get_status_frames
498 int16_t status; /* GNTST_* */ member in struct:gnttab_swap_grant_ref
[all...]
/linux-master/drivers/platform/x86/hp/
H A Dtc1100-wmi.c49 acpi_status status; local
59 status = wmi_query_block(GUID, instance, &result);
60 if (ACPI_FAILURE(status))
88 acpi_status status; local
111 status = wmi_set_block(GUID, instance, &input);
112 if (ACPI_FAILURE(status))
131 acpi_status status = get_state(&result, instance); \
132 if (ACPI_SUCCESS(status)) \
142 acpi_status status = set_state(&tmp, instance); \
143 if (ACPI_FAILURE(status)) \
[all...]
/linux-master/drivers/clk/at91/
H A Dclk-system.c34 unsigned int status; local
36 regmap_read(regmap, AT91_PMC_SR, &status);
38 return !!(status & (1 << id));
66 unsigned int status; local
68 regmap_read(sys->regmap, AT91_PMC_SCSR, &status);
70 if (!(status & (1 << sys->id)))
76 regmap_read(sys->regmap, AT91_PMC_SR, &status);
78 return !!(status & (1 << sys->id));
85 sys->pms.status = clk_system_is_prepared(hw);
94 if (sys->pms.status)
[all...]
/linux-master/drivers/gpu/drm/i915/gt/uc/
H A Dintel_uc_fw.h93 const enum intel_uc_fw_status status; member in union:intel_uc_fw::__anon696
142 enum intel_uc_fw_status status);
145 enum intel_uc_fw_status status)
147 uc_fw->__status = status;
152 const char *intel_uc_fw_status_repr(enum intel_uc_fw_status status) argument
154 switch (status) {
183 static inline int intel_uc_fw_status_to_error(enum intel_uc_fw_status status) argument
185 switch (status) {
227 GEM_BUG_ON(uc_fw->status == INTEL_UC_FIRMWARE_UNINITIALIZED);
228 return uc_fw->status;
144 intel_uc_fw_change_status(struct intel_uc_fw *uc_fw, enum intel_uc_fw_status status) argument
[all...]
/linux-master/drivers/net/wireless/mediatek/mt76/mt7921/
H A Dsdio_mcu.c105 u32 status; local
112 err = readx_poll_timeout(mt76s_read_pcr, &dev->mt76, status,
113 status & WHLPCR_IS_DRIVER_OWN, 2000, 1000000);
116 err = readx_poll_timeout(mt7921s_read_rm3r, dev, status,
117 status & D2HRM3R_IS_DRIVER_OWN,
141 u32 status; local
148 dev, status,
149 !(status & D2HRM3R_IS_DRIVER_OWN),
159 err = readx_poll_timeout(mt76s_read_pcr, &dev->mt76, status,
160 !(status
[all...]
/linux-master/drivers/base/firmware_loader/
H A Dfirmware.h61 enum fw_status status; member in struct:fw_state
92 enum fw_status status)
96 return fw_st->status == status;
105 if (ret != 0 && fw_st->status == FW_STATUS_ABORTED)
114 enum fw_status status)
118 WRITE_ONCE(fw_st->status, status);
120 if (status == FW_STATUS_DONE || status
91 __fw_state_check(struct fw_priv *fw_priv, enum fw_status status) argument
113 __fw_state_set(struct fw_priv *fw_priv, enum fw_status status) argument
[all...]
/linux-master/drivers/input/serio/
H A Dct82c710.c94 unsigned char status; local
101 status = inb_p(CT82C710_STATUS);
103 status |= (CT82C710_ENABLE | CT82C710_RESET);
104 outb_p(status, CT82C710_STATUS);
106 status &= ~(CT82C710_RESET);
107 outb_p(status, CT82C710_STATUS);
109 status |= CT82C710_INTS_ON;
110 outb_p(status, CT82C710_STATUS); /* Enable interrupts */
114 status &= ~(CT82C710_ENABLE | CT82C710_INTS_ON);
115 outb_p(status, CT82C710_STATU
[all...]
/linux-master/drivers/platform/x86/dell/
H A Dalienware-wmi.c283 acpi_status status; local
314 status = wmi_evaluate_method(guid, 0, method_id, &input, NULL);
315 if (ACPI_FAILURE(status))
316 pr_err("alienware-wmi: zone set failure: %u\n", status);
317 return ACPI_FAILURE(status);
355 acpi_status status; local
363 status = wmi_evaluate_method(WMAX_CONTROL_GUID, 0,
365 if (ACPI_FAILURE(status))
366 pr_err("alienware-wmi: brightness set failure: %u\n", status);
367 return ACPI_FAILURE(status);
506 acpi_status status; local
538 acpi_status status; local
559 acpi_status status; local
582 acpi_status status; local
639 acpi_status status; local
692 acpi_status status; local
715 acpi_status status; local
[all...]
/linux-master/tools/testing/selftests/breakpoints/
H A Dstep_after_suspend_test.c52 int status; local
63 wpid = waitpid(pid, &status, __WALL);
68 if (!WIFSTOPPED(status)) {
72 if (WSTOPSIG(status) != SIGSTOP) {
90 wpid = waitpid(pid, &status, __WALL);
95 if (WIFEXITED(status)) {
100 if (!WIFSTOPPED(status)) {
104 if (WSTOPSIG(status) != SIGTRAP) {
116 wpid = waitpid(pid, &status, __WALL);
121 if (!WIFEXITED(status)) {
[all...]
/linux-master/arch/um/os-Linux/
H A Dhelper.c122 int pid, status, err; local
137 CATCH_EINTR(pid = waitpid(pid, &status, __WALL));
144 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0))
146 "returned status 0x%x\n", status);
155 int ret, status; local
158 CATCH_EINTR(ret = waitpid(pid, &status, wflags));
163 } else if (!WIFEXITED(status) || WEXITSTATUS(status) !
[all...]
/linux-master/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_est.c81 u32 status, value, feqn, hbfq, hbfs, btrl, btrl_max; local
86 status = readl(est_addr + EST_STATUS);
91 if (!(status & value))
94 if (status & EST_CGCE) {
101 if (status & EST_HLBS) {
118 if (status & EST_HLBF) {
142 if (status & EST_BTRE) {
144 btrl = FIELD_GET(EST_XGMAC_BTRL, status);
147 btrl = FIELD_GET(EST_GMAC5_BTRL, status);
162 if (status
[all...]
/linux-master/drivers/usb/serial/
H A Dnavman.c31 int status = urb->status; local
34 switch (status) {
42 dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
43 __func__, status);
46 dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
47 __func__, status);
/linux-master/include/linux/fsl/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;
/linux-master/drivers/gpio/
H A Dgpio-zynqmp-modepin.c41 * if the bit is clear then read input bit [4:7] for status or value.
117 int status; local
137 status = devm_gpiochip_add_data(&pdev->dev, chip, chip);
138 if (status)
139 return dev_err_probe(&pdev->dev, status,
142 return status;
/linux-master/drivers/scsi/isci/
H A Dtask.h96 int status; member in struct:isci_tmf
103 "%s: status = %x\n"
104 "tmf->resp.d2h_fis.status = %x\n"
107 tmf->status,
108 tmf->resp.d2h_fis.status,
112 "%s: status = %x\n"
114 "tmf->resp.resp_iu.status = %x\n"
121 tmf->status,
123 tmf->resp.resp_iu.status,
/linux-master/tools/testing/selftests/powerpc/mm/
H A Dlarge_vm_gpr_corruption.c109 int i, status; local
146 FAIL_IF(waitpid(-1, &status, 0) == -1);
147 FAIL_IF(WIFSIGNALED(status));
148 FAIL_IF(!WIFEXITED(status));
149 FAIL_IF(WEXITSTATUS(status));

Completed in 361 milliseconds

<<21222324252627282930>>