Home
last modified time | relevance | path

Searched refs:mhandle (Results 1 – 3 of 3) sorted by relevance

/third_party/curl/tests/libtest/
Dlib1501.c41 CURLM *mhandle = NULL; in test() local
54 multi_init(mhandle); in test()
56 multi_add_handle(mhandle, handle); in test()
58 multi_perform(mhandle, &still_running); in test()
79 multi_fdset(mhandle, &fdread, &fdwrite, &fdexcep, &maxfd); in test()
90 multi_perform(mhandle, &still_running); in test()
108 curl_multi_cleanup(mhandle); in test()
Dlib575.c44 CURLM *mhandle = NULL; in test() local
72 multi_init(mhandle); in test()
74 multi_add_handle(mhandle, handle); in test()
76 multi_perform(mhandle, &still_running); in test()
94 multi_fdset(mhandle, &fdread, &fdwrite, &fdexcep, &maxfd); in test()
102 multi_perform(mhandle, &still_running); in test()
111 curl_multi_cleanup(mhandle); in test()
/third_party/alsa-utils/amixer/
Damixer.c94 snd_mixer_t *mhandle; in info() local
119 if ((err = snd_mixer_open(&mhandle, 0)) < 0) { in info()
123 if (smixer_level == 0 && (err = snd_mixer_attach(mhandle, card)) < 0) { in info()
125 snd_mixer_close(mhandle); in info()
128 …if ((err = snd_mixer_selem_register(mhandle, smixer_level > 0 ? &smixer_options : NULL, NULL)) < 0… in info()
130 snd_mixer_close(mhandle); in info()
133 err = snd_mixer_load(mhandle); in info()
136 snd_mixer_close(mhandle); in info()
139 printf(" Simple ctrls : %i\n", snd_mixer_get_count(mhandle)); in info()
140 snd_mixer_close(mhandle); in info()