Searched refs:channel (Results 1 - 25 of 47) sorted by relevance

12

/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmwifi_channels.h27 /* A chanspec holds the channel number, band, bandwidth and control sideband */
30 /* channel defines */
39 #define CH_MAX_2G_CHANNEL 14 /* Max channel in 2G band */
40 #define MAXCHANNEL 224 /* max # supported channels. The max channel no is 216,
80 /* channel defines */
81 #define LOWER_20_SB(channel) (((channel) > CH_10MHZ_APART) ? ((channel) - CH_10MHZ_APART) : 0)
82 #define UPPER_20_SB(channel) (((channel) < (MAXCHANNE
[all...]
/hardware/libhardware_legacy/qemu/
H A Dqemu.c75 qemu_channel_open_qemud_pipe( QemuChannel* channel, argument
88 channel->is_qemud = 1;
89 channel->fd = fd;
94 qemu_channel_open_qemud( QemuChannel* channel, argument
124 channel->is_qemud = 1;
125 channel->fd = fd;
131 qemu_channel_open_qemud_old( QemuChannel* channel, argument
136 snprintf(channel->device, sizeof channel->device,
139 fd = socket_local_client( channel
155 qemu_channel_open_tty( QemuChannel* channel, const char* name, int mode ) argument
184 qemu_channel_open( QemuChannel* channel, const char* name, int mode ) argument
290 static QemuChannel channel[1]; local
[all...]
/hardware/intel/common/wrs_omxil_core/utils/inc/
H A Daudio_parser.h48 int *frequency, int *channel, int *mode_extension,
58 int *aot, int *frequency, int *channel);
61 int aot, int frequency, int channel);
/hardware/libhardware/include/hardware/
H A Dbt_sock.h35 int channel; member in struct:__anon1193
44 * listen to a rfcomm uuid or channel. It returns the socket fd from which
47 bt_status_t (*listen)(btsock_type_t type, const char* service_name, const uint8_t* service_uuid, int channel, int* sock_fd, int flags);
49 * connect to a rfcomm uuid channel of remote device, It returns the socket fd from which
52 bt_status_t (*connect)(const bt_bdaddr_t *bd_addr, btsock_type_t type, const uint8_t* uuid, int channel, int* sock_fd, int flags);
/hardware/intel/img/libdrm/libdrm/nouveau/
H A Dnouveau_grobj.c43 nvgrobj->base.channel = chan;
49 g.channel = chan->id;
75 nvgrobj->base.channel = chan;
96 chan = nouveau_channel(nvgrobj->base.channel);
102 f.channel = chan->drm.channel;
117 struct nouveau_subchannel *scc = &grobj->channel->subc[i];
133 subc->gr->subc = subc - &grobj->channel->subc[0];
135 BEGIN_RING(grobj->channel, grobj, 0x0000, 1);
136 OUT_RING (grobj->channel, grob
[all...]
H A Dnouveau_grobj.h29 struct nouveau_channel *channel; member in struct:nouveau_grobj
H A Dnouveau_notifier.c46 nvnotify->base.channel = chan;
49 nvnotify->drm.channel = chan->id;
80 nvchan = nouveau_channel(nvnotify->base.channel);
83 f.channel = nvchan->drm.channel;
H A Dnouveau_channel.c55 nvchan->base.id = nvchan->drm.channel;
72 gr->base.channel = &nvchan->base;
121 cf.channel = nvchan->drm.channel;
H A Dnouveau_notifier.h39 struct nouveau_channel *channel; member in struct:nouveau_notifier
H A Dnouveau_pushbuf.c148 nvpb->base.channel = chan;
173 nvpb->base.channel = chan;
202 req.channel = chan->id;
273 req.channel = chan->id;
293 req.channel = chan->id;
H A Dnouveau_pushbuf.h33 struct nouveau_channel *channel; member in struct:nouveau_pushbuf
104 struct nouveau_subchannel *subc = &gr->channel->subc[sc];
/hardware/intel/img/libdrm/shared-core/
H A Dnouveau_drm.h34 int channel; member in struct:drm_nouveau_channel_alloc
48 int channel; member in struct:drm_nouveau_channel_free
52 int channel; member in struct:drm_nouveau_grobj_alloc
58 uint32_t channel; member in struct:drm_nouveau_notifierobj_alloc
65 int channel; member in struct:drm_nouveau_gpuobj_free
138 uint32_t channel; member in struct:drm_nouveau_gem_pushbuf
148 uint32_t channel; member in struct:drm_nouveau_gem_pushbuf_call
/hardware/libhardware_legacy/include/hardware_legacy/
H A Dtdls.h27 int channel; /* channel hint, in channel number (NOT frequency ) */ member in struct:__anon1379
34 int channel; member in struct:__anon1380
H A Dgscan.h29 int max_scan_buckets; // maximum number of channel buckets
61 wifi_channel channel; // channel frequency in MHz member in struct:__anon1341
88 wifi_channel channel; // frequency member in struct:__anon1343
91 /* Add channel class */
97 wifi_band band; // when UNSPECIFIED, use channel list
145 wifi_channel channel; // channel hint member in struct:__anon1347
164 wifi_channel channel; // channel frequenc member in struct:__anon1349
[all...]
H A Drtt.h7 /* channel operating width */
36 wifi_channel_info channel; // Required for STA-AP mode, optional for P2P, NBD etc. member in struct:__anon1372
51 wifi_channel_info channel; // channel information member in struct:__anon1373
77 /* NBD ranging channel map */
79 wifi_channel availablity[32]; // specifies the channel map for each of the 16 TU windows
84 /* API to start publishing the channel map on responder device in a NBD cluster.
85 Responder device will take this request and schedule broadcasting the channel map
92 /* API to clear the channel map on the responder device in a NBD cluster.
93 Responder device will cancel future ranging channel reques
[all...]
H A DAudioSystemLegacy.h351 static bool isOutputChannel(uint32_t channel) { argument
352 return audio_is_output_channel(channel);
354 static bool isInputChannel(uint32_t channel) { argument
355 return audio_is_input_channel(channel);
/hardware/libhardware_legacy/
H A Dqemu.h29 * QEMU communication channel, either through a qemud socket or
44 /* try to open a qemu communication channel.
48 * 'channel' must be a QemuChannel structure that is empty
50 * time to re-open the channel using the same 'channel'
53 extern int qemu_channel_open( QemuChannel* channel,
70 /* directly sends a command through the 'hw-control' channel.
71 * this will open the channel, send the formatted command, then
72 * close the channel automatically.
77 /* sends a question to the hw-control channel, the
[all...]
/hardware/intel/common/wrs_omxil_core/utils/src/
H A Daudio_parser.c252 /* index : channel mode */
336 int *frequency, int *channel, int *mode_extension,
349 !channel || !mode_extension)
397 *channel = header.channel_mode;
416 LOGV(" channel mode: 0x%x, %s\n", header.channel_mode,
549 [6] = "front-center, front-left, front-right, back-left, back-right, LFE-channel",
550 [7] = "front-center, front-left, front-right, side-left, side-right, back-left, back-right, LFE-channel",
562 int *aot, int *frequency, int *channel)
570 if (!aot || !frequency || !channel)
578 *channel
334 mp3_header_parse(const unsigned char *buffer, int *version, int *layer, int *crc, int *bitrate, int *frequency, int *channel, int *mode_extension, int *frame_length, int *frame_duration) argument
561 audio_specific_config_parse(const unsigned char *buffer, int *aot, int *frequency, int *channel) argument
591 audio_specific_config_bitcoding(unsigned char *buffer, int aot, int frequency, int channel) argument
[all...]
/hardware/samsung_slsi/exynos5/include/
H A Ds3c-fb.h27 int channel; member in struct:s3c_fb_user_plane_alpha
H A Ds3c_lcd.h30 int channel; member in struct:s3cfb_user_plane_alpha
/hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
H A Ds3c-fb.h24 int channel; member in struct:s3c_fb_user_plane_alpha
/hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
H A Ddriver_cmd_wext.c136 u8 channel; local
149 channel = (u8)atoi(cmd + 5);
156 buf[bp++] = channel;
157 if (channel != 0) {
163 buf[bp++] = channel;
172 if (channel != 0) {
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
H A Dbcmevent.h161 #define WLC_E_ACTION_FRAME_OFF_CHAN_COMPLETE 70 /* action frame off channel complete */
219 #define WLC_E_CCA_CHAN_QUAL 124 /* CCA based channel quality report */
247 #define WLC_E_STATUS_CS_ABORT 15 /* abort channel select */
275 #define WLC_E_PRUNE_RADAR 7 /* AP is on a radar channel of STA locale */
318 uint16 channel; /* Matches chanspec_t format from bcmwifi_channels.h */ member in struct:wl_event_rx_frame_data
390 uint16 channel; /* channel of GAS protocol */ member in struct:wl_event_gas
409 uint16 channel; /* channel */ member in struct:wl_event_sd
H A Dp2p.h67 #define P2P_SEID_CHANNEL 6 /* Listen channel */
135 uint8 channel; /* Channel */ member in struct:wifi_p2p_listen_channel_se_s
226 uint8 channel; /* Channel */ member in struct:wifi_p2p_channel_se_s
234 uint8 num_channels; /* # of channels in the channel list */
245 uint8 num_entries; /* # of channel entries */
315 uint8 channel; /* Channel */ member in struct:wifi_p2p_op_channel_se_s
/hardware/qcom/wlan/qcwcn/wifi_hal/
H A Dgscan_event_handler.cpp218 results[i].channel =
265 ALOGE("gscan_get_hotlist_ap_found_results: channel %d ",
266 results[i].channel);
335 results[i]->channel =
339 ALOGI("significant_change_result:%d, channel:%d.\n",
340 i, results[i]->channel);
530 result->channel =
624 ALOGE("handleEvent:FULL_SCAN_RESULTS: channel %d ",
625 result->channel);

Completed in 541 milliseconds

12