HomeSort by relevance Sort by last modified time
    Searched refs:ctl (Results 76 - 100 of 169) sorted by null

1 2 34 5 6 7

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
devioctl.h 103 #define DEVICE_TYPE_FROM_CTL_CODE(ctl) (((ULONG) (ctl & 0xffff0000)) >> 16)
  /hardware/qcom/audio/post_proc/
bundle.h 47 struct mixer_ctl *ctl; member in struct:output_context_s
reverb.h 46 struct mixer_ctl *ctl; member in struct:reverb_context_s
bundle.c 210 out_ctxt->ctl = NULL;
215 out_ctxt->ctl = mixer_get_ctl_by_name(out_ctxt->mixer, mixer_string);
216 if (!out_ctxt->ctl) {
348 eq_ctxt->ctl = NULL;
365 bass_ctxt->ctl = NULL;
382 virt_ctxt->ctl = NULL;
421 reverb_ctxt->ctl = NULL;
  /system/core/libusbhost/
usbhost.c 551 struct usbdevfs_ioctl ctl; local
553 ctl.ifno = interface;
554 ctl.ioctl_code = (connect ? USBDEVFS_CONNECT : USBDEVFS_DISCONNECT);
555 ctl.data = NULL;
556 return ioctl(device->fd, USBDEVFS_IOCTL, &ctl);
567 struct usbdevfs_setinterface ctl; local
569 ctl.interface = interface;
570 ctl.altsetting = alt_setting;
571 return ioctl(device->fd, USBDEVFS_SETINTERFACE, &ctl);
  /prebuilts/go/darwin-x86/src/net/
tcpsock_plan9.go 141 if l == nil || l.fd == nil || l.fd.ctl == nil {
154 if l == nil || l.fd == nil || l.fd.ctl == nil {
167 if l == nil || l.fd == nil || l.fd.ctl == nil {
170 if _, err := l.fd.ctl.WriteString("hangup"); err != nil {
171 l.fd.ctl.Close()
174 err := l.fd.ctl.Close()
189 if l == nil || l.fd == nil || l.fd.ctl == nil {
  /prebuilts/go/linux-x86/src/net/
tcpsock_plan9.go 141 if l == nil || l.fd == nil || l.fd.ctl == nil {
154 if l == nil || l.fd == nil || l.fd.ctl == nil {
167 if l == nil || l.fd == nil || l.fd.ctl == nil {
170 if _, err := l.fd.ctl.WriteString("hangup"); err != nil {
171 l.fd.ctl.Close()
174 err := l.fd.ctl.Close()
189 if l == nil || l.fd == nil || l.fd.ctl == nil {
  /hardware/qcom/audio/hal/msm8974/
platform.c 935 struct mixer_ctl *ctl; local
1745 struct mixer_ctl *ctl; local
1781 struct mixer_ctl *ctl; local
1819 struct mixer_ctl *ctl; local
2364 struct mixer_ctl *ctl; local
2405 struct mixer_ctl *ctl; local
2455 struct mixer_ctl *ctl; local
2681 const struct mixer_ctl *ctl; local
    [all...]
  /external/jemalloc/include/jemalloc/internal/
ctl.h 24 int (*ctl)(const size_t *, size_t, void *, size_t *, member in struct:ctl_named_node_s
  /external/libpcap/
pcap-snit.c 213 struct strbuf ctl, data; local
220 ctl.len = sizeof(*sa); /* XXX - what was this? */
221 ctl.buf = (char *)sa;
224 ret = putmsg(p->fd, &ctl, &data);
  /hardware/qcom/audio/hal/audio_extn/
hfp.c 77 struct mixer_ctl *ctl; local
107 ctl = mixer_get_ctl_by_name(adev->mixer, hfpmod.hfp_vol_mixer_ctl);
108 if (!ctl) {
109 ALOGE("%s: Could not get ctl for mixer cmd - %s",
113 if(mixer_ctl_set_value(ctl, 0, vol) < 0) {
334 ALOGD("%s: mixer ctl name: %s", __func__, value);
  /external/libevent/
event.c 738 struct common_timeout_list *ctl = local
740 event_del(&ctl->timeout_event); /* Internal; doesn't count */
741 event_debug_unassign(&ctl->timeout_event);
742 for (ev = TAILQ_FIRST(&ctl->events); ev; ) {
751 mm_free(ctl);
1145 common_timeout_schedule(struct common_timeout_list *ctl,
1150 event_add_internal(&ctl->timeout_event, &timeout, 1);
1160 struct common_timeout_list *ctl = arg; local
1161 struct event_base *base = ctl->base;
1166 ev = TAILQ_FIRST(&ctl->events)
1200 const struct common_timeout_list *ctl = local
2170 struct common_timeout_list *ctl = local
2476 struct common_timeout_list *ctl = local
2546 struct common_timeout_list *ctl = local
2620 struct common_timeout_list *ctl = local
2930 struct common_timeout_list *ctl = base->common_timeout_queues[i]; local
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
mksysctl_openbsd.pl 173 foreach my $ctl (@ctls) {
174 $ctls{$ctl} = $ctl;
  /prebuilts/go/linux-x86/src/syscall/
mksysctl_openbsd.pl 173 foreach my $ctl (@ctls) {
174 $ctls{$ctl} = $ctl;
  /external/curl/lib/
curl_ntlm_core.c 290 _CIPHER_Control_T ctl; local
293 ctl.Func_ID = ENCRYPT_ONLY;
294 ctl.Data_Len = sizeof(key);
297 extend_key_56_to_64(key_56, ctl.Crypto_Key);
300 Curl_des_set_odd_parity((unsigned char *) ctl.Crypto_Key, ctl.Data_Len);
303 _CIPHER((_SPCPTR *) &out, &ctl, (_SPCPTR *) &in);
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinPool.java 284 * Field "ctl" contains 64 bits holding information needed to
326 * subfield of ctl stores indices, not references.
339 * The "ctl" field atomically maintains active and total worker
350 * 32bit subfield of ctl) when they cannot find work. The top
390 * The ctl field also serves as the basis for memory
393 * consumers sync with each other by both writing/CASing ctl (even
399 * Rather than CASing ctl to its current value in the common case
465 * This relies primarily on the active count bits of "ctl"
1461 volatile long ctl; \/\/ main pool control field in class:ForkJoinPool
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
mixer_abst.h 75 snd_ctl_t *ctl; member in struct:_sm_class_basic
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
mixer_abst.h 75 snd_ctl_t *ctl; member in struct:_sm_class_basic
  /hardware/bsp/intel/peripheral/audio/generic/
audio_hal.c 1115 struct mixer_ctl *ctl; local
1175 struct mixer_ctl *ctl; local
    [all...]
  /hardware/qcom/audio/hal/msm8960/
platform.c 243 struct mixer_ctl *ctl; local
246 ctl = mixer_get_ctl_by_name(mixer, mixer_ctl_name);
247 if (!ctl) {
248 ALOGE("%s: Could not get ctl for mixer cmd - %s",
253 mixer_ctl_set_enum_by_string(ctl, ec_ref);
877 struct mixer_ctl *ctl; local
    [all...]
  /external/libvncserver/webclients/novnc/include/
rfb.js     [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/
html_module_unittest.py 339 ctl = html_generation_controller.HTMLGenerationController()
340 my_component.AppendHTMLContentsToFile(f, ctl)
  /hardware/intel/audio_media/hdmi/
tinyaudio_hw.c 414 struct mixer_ctl *ctl; local
433 ctl = mixer_get_ctl_by_name(mixer, "Playback Channel Map");
435 //ctl = mixer_get_ctl(mixer, id);
437 type = mixer_ctl_get_type(ctl);
438 num_values = mixer_ctl_get_num_values(ctl);
448 chmap = mixer_ctl_get_value(ctl, i);
  /device/htc/flounder/audio/hal/
audio_hw.c 695 struct mixer_ctl *ctl; local
707 struct mixer_ctl *ctl; local
2909 struct mixer_ctl *ctl; local
4439 struct mixer_ctl *ctl; local
    [all...]
  /development/ndk/platforms/android-3/include/linux/
ata.h 222 u8 ctl; member in struct:ata_taskfile

Completed in 901 milliseconds

1 2 34 5 6 7