Home
last modified time | relevance | path

Searched refs:srcobj (Results 1 – 25 of 117) sorted by relevance

12345

/dports/games/uqm/uqm-0.8.0/src/libs/sound/
H A Daudiocore.h97 bool (* IsSource) (audio_Object srcobj);
108 void (* SourceRewind) (audio_Object srcobj);
109 void (* SourcePlay) (audio_Object srcobj);
110 void (* SourcePause) (audio_Object srcobj);
111 void (* SourceStop) (audio_Object srcobj);
112 void (* SourceQueueBuffers) (audio_Object srcobj, uint32 n,
138 bool audio_IsSource (audio_Object srcobj);
149 void audio_SourceRewind (audio_Object srcobj);
150 void audio_SourcePlay (audio_Object srcobj);
151 void audio_SourcePause (audio_Object srcobj);
[all …]
H A Daudiocore.c129 audio_IsSource (audio_Object srcobj) in audio_IsSource() argument
131 return audiodrv.IsSource (srcobj); in audio_IsSource()
171 audio_SourceRewind (audio_Object srcobj) in audio_SourceRewind() argument
173 audiodrv.SourceRewind (srcobj); in audio_SourceRewind()
177 audio_SourcePlay (audio_Object srcobj) in audio_SourcePlay() argument
179 audiodrv.SourcePlay (srcobj); in audio_SourcePlay()
183 audio_SourcePause (audio_Object srcobj) in audio_SourcePause() argument
185 audiodrv.SourcePause (srcobj); in audio_SourcePause()
189 audio_SourceStop (audio_Object srcobj) in audio_SourceStop() argument
191 audiodrv.SourceStop (srcobj); in audio_SourceStop()
[all …]
/dports/games/uqm/uqm-0.8.0/src/libs/sound/mixer/nosound/
H A Daudiodrv_nosound.c269 noSound_IsSource (audio_Object srcobj) in noSound_IsSource() argument
271 return mixer_IsSource ((mixer_Object) srcobj); in noSound_IsSource()
335 noSound_SourceRewind (audio_Object srcobj) in noSound_SourceRewind() argument
337 mixer_SourceRewind ((mixer_Object) srcobj); in noSound_SourceRewind()
341 noSound_SourcePlay (audio_Object srcobj) in noSound_SourcePlay() argument
343 mixer_SourcePlay ((mixer_Object) srcobj); in noSound_SourcePlay()
347 noSound_SourcePause (audio_Object srcobj) in noSound_SourcePause() argument
349 mixer_SourcePause ((mixer_Object) srcobj); in noSound_SourcePause()
353 noSound_SourceStop (audio_Object srcobj) in noSound_SourceStop() argument
355 mixer_SourceStop ((mixer_Object) srcobj); in noSound_SourceStop()
[all …]
H A Daudiodrv_nosound.h39 bool noSound_IsSource (audio_Object srcobj);
40 void noSound_Sourcei (audio_Object srcobj, audio_SourceProp pname,
42 void noSound_Sourcef (audio_Object srcobj, audio_SourceProp pname,
44 void noSound_Sourcefv (audio_Object srcobj, audio_SourceProp pname,
46 void noSound_GetSourcei (audio_Object srcobj, audio_SourceProp pname,
50 void noSound_SourceRewind (audio_Object srcobj);
51 void noSound_SourcePlay (audio_Object srcobj);
52 void noSound_SourcePause (audio_Object srcobj);
53 void noSound_SourceStop (audio_Object srcobj);
54 void noSound_SourceQueueBuffers (audio_Object srcobj, uint32 n,
[all …]
/dports/games/uqm/uqm-0.8.0/src/libs/sound/mixer/sdl/
H A Daudiodrv_sdl.h36 bool mixSDL_IsSource (audio_Object srcobj);
37 void mixSDL_Sourcei (audio_Object srcobj, audio_SourceProp pname,
39 void mixSDL_Sourcef (audio_Object srcobj, audio_SourceProp pname,
41 void mixSDL_Sourcefv (audio_Object srcobj, audio_SourceProp pname,
43 void mixSDL_GetSourcei (audio_Object srcobj, audio_SourceProp pname,
47 void mixSDL_SourceRewind (audio_Object srcobj);
48 void mixSDL_SourcePlay (audio_Object srcobj);
49 void mixSDL_SourcePause (audio_Object srcobj);
50 void mixSDL_SourceStop (audio_Object srcobj);
51 void mixSDL_SourceQueueBuffers (audio_Object srcobj, uint32 n,
[all …]
H A Daudiodrv_sdl.c347 mixSDL_IsSource (audio_Object srcobj) in mixSDL_IsSource() argument
349 return mixer_IsSource ((mixer_Object) srcobj); in mixSDL_IsSource()
411 mixSDL_SourceRewind (audio_Object srcobj) in mixSDL_SourceRewind() argument
413 mixer_SourceRewind ((mixer_Object) srcobj); in mixSDL_SourceRewind()
417 mixSDL_SourcePlay (audio_Object srcobj) in mixSDL_SourcePlay() argument
419 mixer_SourcePlay ((mixer_Object) srcobj); in mixSDL_SourcePlay()
423 mixSDL_SourcePause (audio_Object srcobj) in mixSDL_SourcePause() argument
425 mixer_SourcePause ((mixer_Object) srcobj); in mixSDL_SourcePause()
429 mixSDL_SourceStop (audio_Object srcobj) in mixSDL_SourceStop() argument
431 mixer_SourceStop ((mixer_Object) srcobj); in mixSDL_SourceStop()
[all …]
/dports/games/uqm/uqm-0.8.0/src/libs/sound/openal/
H A Daudiodrv_openal.c281 openAL_IsSource (audio_Object srcobj) in openAL_IsSource() argument
283 return alIsSource ((ALuint) srcobj); in openAL_IsSource()
345 openAL_SourceRewind (audio_Object srcobj) in openAL_SourceRewind() argument
347 alSourceRewind ((ALuint) srcobj); in openAL_SourceRewind()
351 openAL_SourcePlay (audio_Object srcobj) in openAL_SourcePlay() argument
353 alSourcePlay ((ALuint) srcobj); in openAL_SourcePlay()
357 openAL_SourcePause (audio_Object srcobj) in openAL_SourcePause() argument
359 alSourcePause ((ALuint) srcobj); in openAL_SourcePause()
363 openAL_SourceStop (audio_Object srcobj) in openAL_SourceStop() argument
365 alSourceStop ((ALuint) srcobj); in openAL_SourceStop()
[all …]
H A Daudiodrv_openal.h56 bool openAL_IsSource (audio_Object srcobj);
57 void openAL_Sourcei (audio_Object srcobj, audio_SourceProp pname,
59 void openAL_Sourcef (audio_Object srcobj, audio_SourceProp pname,
61 void openAL_Sourcefv (audio_Object srcobj, audio_SourceProp pname,
63 void openAL_GetSourcei (audio_Object srcobj, audio_SourceProp pname,
67 void openAL_SourceRewind (audio_Object srcobj);
68 void openAL_SourcePlay (audio_Object srcobj);
69 void openAL_SourcePause (audio_Object srcobj);
70 void openAL_SourceStop (audio_Object srcobj);
71 void openAL_SourceQueueBuffers (audio_Object srcobj, uint32 n,
[all …]
/dports/games/uqm/uqm-0.8.0/src/libs/sound/mixer/
H A Dmixer.h226 bool mixer_IsSource (mixer_Object srcobj);
227 void mixer_Sourcei (mixer_Object srcobj, mixer_SourceProp pname,
229 void mixer_Sourcef (mixer_Object srcobj, mixer_SourceProp pname,
231 void mixer_Sourcefv (mixer_Object srcobj, mixer_SourceProp pname,
233 void mixer_GetSourcei (mixer_Object srcobj, mixer_SourceProp pname,
237 void mixer_SourceRewind (mixer_Object srcobj);
238 void mixer_SourcePlay (mixer_Object srcobj);
239 void mixer_SourcePause (mixer_Object srcobj);
240 void mixer_SourceStop (mixer_Object srcobj);
241 void mixer_SourceQueueBuffers (mixer_Object srcobj, uint32 n,
[all …]
H A Dmixer.c345 mixer_IsSource (mixer_Object srcobj) in mixer_IsSource() argument
347 mixer_Source *src = (mixer_Source *) srcobj; in mixer_IsSource()
365 mixer_Source *src = (mixer_Source *) srcobj; in mixer_Sourcei()
432 mixer_Source *src = (mixer_Source *) srcobj; in mixer_Sourcef()
467 (void)srcobj; in mixer_Sourcefv()
478 mixer_Source *src = (mixer_Source *) srcobj; in mixer_GetSourcei()
528 mixer_Source *src = (mixer_Source *) srcobj; in mixer_GetSourcef()
562 mixer_SourcePlay (mixer_Object srcobj) in mixer_SourcePlay() argument
596 mixer_SourceRewind (mixer_Object srcobj) in mixer_SourceRewind() argument
624 mixer_SourcePause (mixer_Object srcobj) in mixer_SourcePause() argument
[all …]
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/flask/
H A Ddebughelpers.py133 for idx, (loader, srcobj, triple) in enumerate(attempts):
134 if isinstance(srcobj, Flask):
135 src_info = 'application "%s"' % srcobj.import_name
136 elif isinstance(srcobj, Blueprint):
137 src_info = 'blueprint "%s" (%s)' % (srcobj.name, srcobj.import_name)
139 src_info = repr(srcobj)
/dports/dns/dnsjit/dnsjit-1.2.2/src/filter/
H A Dcopy.c159 const core_object_t* srcobj = obj; in _receive() local
162 if (filter_copy_get(self, srcobj->obj_type)) { in _receive()
164 current = core_object_copy(srcobj); in _receive()
172 srcobj = srcobj->obj_prev; in _receive()
173 } while (srcobj != NULL); in _receive()
/dports/devel/p5-ExtUtils-XSBuilder/ExtUtils-XSBuilder-0.28/XSBuilder/C/
H A Dgrammar.pm24 if ($thisparser->{srcobj}->handle_define($elem))
46 … push @{$thisparser->{data}{constants}}, $elem if ($thisparser->{srcobj}->handle_enum($elem)) ;
90 if ($thisparser->{srcobj}->handle_struct($s))
129 if ($thisparser->{srcobj}->handle_function($s))
/dports/net/evans/evans-0.9.1/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/www/bugzilla2atom/bugzilla2atom-56126912bf314a80744827758d582e5e60e7178c/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/security/vault/vault-1.8.2/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/devel/liteide/liteide-x37.4/liteidex/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/net-im/dendrite/dendrite-0.5.1/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/golang.org/x/tools/tools-5eefd052ad72/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/security/xray-core/Xray-core-1.5.0/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/security/vuls/vuls-0.13.7/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/golang.org/x/tools/go/types/objectpath/
H A Dobjectpath_test.go261 for _, srcobj := range info.Defs {
262 if srcobj == nil {
265 if _, ok := srcobj.(*types.PkgName); ok {
269 path, err := objectpath.For(srcobj)
271 t.Errorf("For(%v): %v", srcobj, err)
283 srcstr := objectString(srcobj)

12345