OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hwdep
(Results
1 - 8
of
8
) sorted by null
/device/samsung/crespo/alsa-lib/src/hwdep/
hwdep_local.h
2
*
HwDep
interface - local header file
28
int (*close)(snd_hwdep_t *
hwdep
);
29
int (*nonblock)(snd_hwdep_t *
hwdep
, int nonblock);
30
int (*info)(snd_hwdep_t *
hwdep
, snd_hwdep_info_t *info);
31
int (*ioctl)(snd_hwdep_t *
hwdep
, unsigned int request, void * arg);
32
ssize_t (*write)(snd_hwdep_t *
hwdep
, const void *buffer, size_t size);
33
ssize_t (*read)(snd_hwdep_t *
hwdep
, void *buffer, size_t size);
hwdep_hw.c
38
static int snd_hwdep_hw_close(snd_hwdep_t *
hwdep
)
41
assert(
hwdep
);
42
res = close(
hwdep
->poll_fd) < 0 ? -errno : 0;
46
static int snd_hwdep_hw_nonblock(snd_hwdep_t *
hwdep
, int nonblock)
49
assert(
hwdep
);
50
if ((flags = fcntl(
hwdep
->poll_fd, F_GETFL)) < 0)
56
if (fcntl(
hwdep
->poll_fd, F_SETFL, flags) < 0)
61
static int snd_hwdep_hw_info(snd_hwdep_t *
hwdep
, snd_hwdep_info_t *info)
63
assert(
hwdep
&& info);
64
if (ioctl(
hwdep
->poll_fd, SNDRV_HWDEP_IOCTL_INFO, info) < 0
110
snd_
hwdep
_t *
hwdep
;
local
[
all
...]
hwdep.c
2
* \file
hwdep
/
hwdep
.c
3
* \brief
HwDep
Interface (hardware dependent)
7
*
HwDep
(hardware dependent) Interface is designed for individual hardware
39
static int snd_hwdep_open_conf(snd_hwdep_t **
hwdep
,
57
SNDERR("Invalid type for
HWDEP
%s definition", name);
59
SNDERR("Invalid type for
HWDEP
definition");
80
SNDERR("Invalid type for
HWDEP
type %s definition", str);
134
err = open_func(
hwdep
, name, hwdep_root, hwdep_conf, mode);
136
(*
hwdep
)->dl_handle = h
[
all
...]
/device/samsung/crespo/alsa-lib/include/
hwdep.h
2
* \file include/
hwdep
.h
36
* \defgroup
HwDep
Hardware Dependant Interface
44
/**
HwDep
information container */
47
/**
HwDep
DSP status container */
50
/**
HwDep
DSP image container */
53
/**
HwDep
interface */
72
SND_HWDEP_IFACE_LAST = SND_HWDEP_IFACE_SB_RC /**< last known
hwdep
interface */
84
/**
HwDep
handle type */
86
/** Kernel level
HwDep
*/
88
/** Shared memory client
HwDep
(not yet implemented) *
[
all
...]
asoundlib.h
52
#include <alsa/
hwdep
.h>
/device/samsung/crespo/alsa-lib/src/conf/
alsa.conf
104
defaults.
hwdep
.card 0
105
defaults.
hwdep
.device 0
465
#
HwDep
interface
468
hwdep
.default {
478
name defaults.
hwdep
.card
488
name defaults.
hwdep
.device
493
hwdep
.hw {
505
name defaults.
hwdep
.card
518
name defaults.
hwdep
.device
/device/samsung/crespo/alsa-lib/aserver/
aserver.c
190
}
hwdep
;
/device/samsung/crespo/alsa-lib/
configure
[
all
...]
Completed in 1013 milliseconds