Home
last modified time | relevance | path

Searched refs:io (Results 1 - 25 of 2331) sorted by relevance

12345678910>>...94

/third_party/pulseaudio/src/pulsecore/
H A Diochannel.c62 static void delete_events(pa_iochannel *io) { in delete_events() argument
63 pa_assert(io); in delete_events()
65 if (io->input_event) in delete_events()
66 io->mainloop->io_free(io->input_event); in delete_events()
68 if (io->output_event && io->output_event != io->input_event) in delete_events()
69 io->mainloop->io_free(io in delete_events()
74 enable_events(pa_iochannel *io) enable_events() argument
129 pa_iochannel *io = userdata; callback() local
163 pa_iochannel *io; pa_iochannel_new() local
271 pa_iochannel_creds_supported(pa_iochannel *io) pa_iochannel_creds_supported() argument
293 pa_iochannel_creds_enable(pa_iochannel *io) pa_iochannel_creds_enable() argument
519 pa_iochannel_socket_set_rcvbuf(pa_iochannel *io, size_t l) pa_iochannel_socket_set_rcvbuf() argument
525 pa_iochannel_socket_set_sndbuf(pa_iochannel *io, size_t l) pa_iochannel_socket_set_sndbuf() argument
531 pa_iochannel_get_mainloop_api(pa_iochannel *io) pa_iochannel_get_mainloop_api() argument
537 pa_iochannel_get_recv_fd(pa_iochannel *io) pa_iochannel_get_recv_fd() argument
543 pa_iochannel_get_send_fd(pa_iochannel *io) pa_iochannel_get_send_fd() argument
549 pa_iochannel_socket_is_local(pa_iochannel *io) pa_iochannel_socket_is_local() argument
[all...]
H A Diochannel.h47 void pa_iochannel_free(pa_iochannel*io);
51 ssize_t pa_iochannel_write(pa_iochannel*io, const void*data, size_t l);
52 ssize_t pa_iochannel_read(pa_iochannel*io, void*data, size_t l);
55 bool pa_iochannel_creds_supported(pa_iochannel *io);
56 int pa_iochannel_creds_enable(pa_iochannel *io);
58 ssize_t pa_iochannel_write_with_fds(pa_iochannel*io, const void*data, size_t l, int nfd, const int *fds);
59 ssize_t pa_iochannel_write_with_creds(pa_iochannel*io, const void*data, size_t l, const pa_creds *ucred);
60 ssize_t pa_iochannel_read_with_ancil_data(pa_iochannel*io, void*data, size_t l, pa_cmsg_ancil_data *ancil_data);
63 bool pa_iochannel_is_readable(pa_iochannel*io);
64 bool pa_iochannel_is_writable(pa_iochannel*io);
[all...]
/third_party/mesa3d/src/freedreno/decode/
H A Dio.c37 #include "io.h"
39 struct io { struct
46 io_error(struct io *io) in io_error() argument
48 fprintf(stderr, "%s\n", archive_error_string(io->a)); in io_error()
49 io_close(io); in io_error()
52 static struct io *
55 struct io *io = calloc(1, sizeof(*io)); in io_new() local
92 struct io *io = io_new(); io_open() local
116 struct io *io = io_new(); io_openfd() local
138 io_close(struct io *io) io_close() argument
145 io_offset(struct io *io) io_offset() argument
152 io_readn(struct io *io, void *buf, int nbytes) io_readn() argument
[all...]
/third_party/skia/third_party/externals/imgui/backends/
H A Dimgui_impl_glut.cpp22 // 2019-03-25: Misc: Made io.DeltaTime always above zero.
23 // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
42 ImGuiIO& io = ImGui::GetIO(); in ImGui_ImplGLUT_Init() local
45 io.BackendPlatformName = "imgui_impl_glut (freeglut)"; in ImGui_ImplGLUT_Init()
47 io.BackendPlatformName = "imgui_impl_glut"; in ImGui_ImplGLUT_Init()
53 io.KeyMap[ImGuiKey_Tab] = '\t'; // == 9 == CTRL+I in ImGui_ImplGLUT_Init()
54 io.KeyMap[ImGuiKey_LeftArrow] = 256 + GLUT_KEY_LEFT; in ImGui_ImplGLUT_Init()
55 io.KeyMap[ImGuiKey_RightArrow] = 256 + GLUT_KEY_RIGHT; in ImGui_ImplGLUT_Init()
56 io.KeyMap[ImGuiKey_UpArrow] = 256 + GLUT_KEY_UP; in ImGui_ImplGLUT_Init()
57 io in ImGui_ImplGLUT_Init()
101 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_NewFrame() local
115 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_UpdateKeyboardMods() local
126 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_KeyboardFunc() local
147 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_KeyboardUpFunc() local
163 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_SpecialFunc() local
173 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_SpecialUpFunc() local
182 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_MouseFunc() local
197 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_MouseWheelFunc() local
209 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_ReshapeFunc() local
215 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGLUT_MotionFunc() local
[all...]
H A Dimgui_impl_android.cpp8 // [ ] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
9 // [ ] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. FIXME: Check if this is even possible with Android.
41 ImGuiIO& io = ImGui::GetIO(); in ImGui_ImplAndroid_HandleInputEvent() local
51 io.KeyCtrl = ((event_meta_state & AMETA_CTRL_ON) != 0); in ImGui_ImplAndroid_HandleInputEvent()
52 io.KeyShift = ((event_meta_state & AMETA_SHIFT_ON) != 0); in ImGui_ImplAndroid_HandleInputEvent()
53 io.KeyAlt = ((event_meta_state & AMETA_ALT_ON) != 0); in ImGui_ImplAndroid_HandleInputEvent()
84 io.MouseDown[0] = (event_action == AMOTION_EVENT_ACTION_DOWN); in ImGui_ImplAndroid_HandleInputEvent()
85 io.MousePos = ImVec2(AMotionEvent_getX(input_event, event_pointer_index), AMotionEvent_getY(input_event, event_pointer_index)); in ImGui_ImplAndroid_HandleInputEvent()
92 io.MouseDown[0] = ((button_state & AMOTION_EVENT_BUTTON_PRIMARY) != 0); in ImGui_ImplAndroid_HandleInputEvent()
93 io in ImGui_ImplAndroid_HandleInputEvent()
123 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplAndroid_Init() local
159 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplAndroid_NewFrame() local
[all...]
H A Dimgui_impl_glfw.cpp8 // [X] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
9 // [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange' (note: the resizing cursors requires GLFW 3.4+).
19 // 2021-08-17: *BREAKING CHANGE*: Now using glfwSetWindowFocusCallback() to calling io.AddFocusEvent(). If you called ImGui_ImplGlfw_InitXXX() with install_callbacks = false, you MUST install glfwSetWindowFocusCallback() and forward it to the backend via ImGui_ImplGlfw_WindowFocusCallback().
28 // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
33 // 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors flag + honor ImGuiConfigFlags_NoMouseCursorChange flag.
38 // 2018-01-25: Inputs: Honoring the io.WantSetMousePos by repositioning the mouse (when using navigation and ImGuiConfigFlags_NavMoveMouse is set).
95 // Backend data stored in io.BackendPlatformUserData to allow support for multiple Dear ImGui contexts
134 ImGuiIO& io = ImGui::GetIO(); in ImGui_ImplGlfw_ScrollCallback() local
135 io.MouseWheelH += (float)xoffset; in ImGui_ImplGlfw_ScrollCallback()
136 io in ImGui_ImplGlfw_ScrollCallback()
145 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGlfw_KeyCallback() local
171 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGlfw_WindowFocusCallback() local
193 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGlfw_CharCallback() local
204 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGlfw_Init() local
313 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGlfw_Shutdown() local
337 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGlfw_UpdateMousePosAndButtons() local
372 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGlfw_UpdateMouseCursor() local
394 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGlfw_UpdateGamepads() local
431 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplGlfw_NewFrame() local
[all...]
H A Dimgui_impl_sdl.cpp7 // [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
10 // [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
21 // 2021-08-17: Calling io.AddFocusEvent() on SDL_WINDOWEVENT_FOCUS_GAINED/SDL_WINDOWEVENT_FOCUS_LOST.
34 // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
41 // 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors flag + honor ImGuiConfigFlags_NoMouseCursorChange flag.
84 // Backend data stored in io.BackendPlatformUserData to allow support for multiple Dear ImGui contexts
108 // You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants to use your inputs.
109 // - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application.
110 // - When io
115 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplSDL2_ProcessEvent() local
170 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplSDL2_Init() local
290 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplSDL2_Shutdown() local
305 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplSDL2_UpdateMousePosAndButtons() local
361 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplSDL2_UpdateMouseCursor() local
382 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplSDL2_UpdateGamepads() local
425 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplSDL2_NewFrame() local
[all...]
H A Dimgui_impl_marmalade.cpp19 // 2018-11-30: Misc: Setting up io.BackendPlatformName/io.BackendRendererName so they can be displayed in the About Window.
20 // 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_Marmalade_RenderDrawData() in the .h file so you can call it yourself.
143 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback()
145 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback()
153 ImGuiIO& io = ImGui::GetIO(); in ImGui_Marmalade_KeyCallback() local
156 io.KeysDown[e->m_Key] = true; in ImGui_Marmalade_KeyCallback()
158 io.KeysDown[e->m_Key] = false; in ImGui_Marmalade_KeyCallback()
160 io.KeyCtrl = s3eKeyboardGetState(s3eKeyLeftControl) == S3E_KEY_STATE_DOWN || s3eKeyboardGetState(s3eKeyRightControl) == S3E_KEY_STATE_DOWN; in ImGui_Marmalade_KeyCallback()
161 io in ImGui_Marmalade_KeyCallback()
170 ImGuiIO& io = ImGui::GetIO(); ImGui_Marmalade_CharCallback() local
180 ImGuiIO& io = ImGui::GetIO(); ImGui_Marmalade_CreateDeviceObjects() local
222 ImGuiIO& io = ImGui::GetIO(); ImGui_Marmalade_Init() local
272 ImGuiIO& io = ImGui::GetIO(); ImGui_Marmalade_NewFrame() local
[all...]
H A Dimgui_impl_allegro5.cpp7 // [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
19 // 2021-08-17: Calling io.AddFocusEvent() on ALLEGRO_EVENT_DISPLAY_SWITCH_OUT/ALLEGRO_EVENT_DISPLAY_SWITCH_IN events.
29 // 2018-11-30: Misc: Setting up io.BackendPlatformName/io.BackendRendererName so they can be displayed in the About Window.
33 // 2018-06-11: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors flag + honor ImGuiConfigFlags_NoMouseCursorChange flag.
36 // 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_ImplAllegro5_RenderDrawData() in the .h file so you can call it yourself.
71 // Backend data stored in io.BackendPlatformUserData to allow support for multiple Dear ImGui contexts
200 ImGuiIO& io = ImGui::GetIO(); in ImGui_ImplAllegro5_CreateDeviceObjects() local
203 io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); in ImGui_ImplAllegro5_CreateDeviceObjects()
232 io in ImGui_ImplAllegro5_CreateDeviceObjects()
246 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplAllegro5_InvalidateDeviceObjects() local
280 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplAllegro5_Init() local
340 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplAllegro5_Shutdown() local
359 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplAllegro5_ProcessEvent() local
420 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplAllegro5_UpdateMouseCursor() local
456 ImGuiIO& io = ImGui::GetIO(); ImGui_ImplAllegro5_NewFrame() local
[all...]
/third_party/skia/third_party/externals/libwebp/src/dec/
H A Dio_dec.c25 static int EmitYUV(const VP8Io* const io, WebPDecParams* const p) { in EmitYUV() argument
28 uint8_t* const y_dst = buf->y + (size_t)io->mb_y * buf->y_stride; in EmitYUV()
29 uint8_t* const u_dst = buf->u + (size_t)(io->mb_y >> 1) * buf->u_stride; in EmitYUV()
30 uint8_t* const v_dst = buf->v + (size_t)(io->mb_y >> 1) * buf->v_stride; in EmitYUV()
31 const int mb_w = io->mb_w; in EmitYUV()
32 const int mb_h = io->mb_h; in EmitYUV()
35 WebPCopyPlane(io->y, io->y_stride, y_dst, buf->y_stride, mb_w, mb_h); in EmitYUV()
36 WebPCopyPlane(io->u, io in EmitYUV()
42 EmitSampledRGB(const VP8Io* const io, WebPDecParams* const p) EmitSampledRGB() argument
57 EmitFancyRGB(const VP8Io* const io, WebPDecParams* const p) EmitFancyRGB() argument
125 EmitAlphaYUV(const VP8Io* const io, WebPDecParams* const p, int expected_num_lines_out) EmitAlphaYUV() argument
148 GetAlphaSourceRow(const VP8Io* const io, const uint8_t** alpha, int* const num_rows) GetAlphaSourceRow() argument
174 EmitAlphaRGB(const VP8Io* const io, WebPDecParams* const p, int expected_num_lines_out) EmitAlphaRGB() argument
200 EmitAlphaRGBA4444(const VP8Io* const io, WebPDecParams* const p, int expected_num_lines_out) EmitAlphaRGBA4444() argument
252 EmitRescaledYUV(const VP8Io* const io, WebPDecParams* const p) EmitRescaledYUV() argument
271 EmitRescaledAlphaYUV(const VP8Io* const io, WebPDecParams* const p, int expected_num_lines_out) EmitRescaledAlphaYUV() argument
292 InitYUVRescaler(const VP8Io* const io, WebPDecParams* const p) InitYUVRescaler() argument
384 EmitRescaledRGB(const VP8Io* const io, WebPDecParams* const p) EmitRescaledRGB() argument
472 EmitRescaledAlphaRGB(const VP8Io* const io, WebPDecParams* const p, int expected_num_out_lines) EmitRescaledAlphaRGB() argument
488 InitRGBRescaler(const VP8Io* const io, WebPDecParams* const p) InitRGBRescaler() argument
563 CustomSetup(VP8Io* io) CustomSetup() argument
626 CustomPut(const VP8Io* io) CustomPut() argument
646 CustomTeardown(const VP8Io* io) CustomTeardown() argument
655 WebPInitCustomIo(WebPDecParams* const params, VP8Io* const io) WebPInitCustomIo() argument
[all...]
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_string_field.h70 void GenerateInterfaceMembers(io::Printer* printer) const;
71 void GenerateMembers(io::Printer* printer) const;
72 void GenerateBuilderMembers(io::Printer* printer) const;
73 void GenerateInitializationCode(io::Printer* printer) const;
74 void GenerateBuilderClearCode(io::Printer* printer) const;
75 void GenerateMergingCode(io::Printer* printer) const;
76 void GenerateBuildingCode(io::Printer* printer) const;
77 void GenerateParsingCode(io::Printer* printer) const;
78 void GenerateParsingDoneCode(io::Printer* printer) const;
79 void GenerateSerializationCode(io
[all...]
H A Djava_message_field.h70 void GenerateInterfaceMembers(io::Printer* printer) const;
71 void GenerateMembers(io::Printer* printer) const;
72 void GenerateBuilderMembers(io::Printer* printer) const;
73 void GenerateInitializationCode(io::Printer* printer) const;
74 void GenerateBuilderClearCode(io::Printer* printer) const;
75 void GenerateMergingCode(io::Printer* printer) const;
76 void GenerateBuildingCode(io::Printer* printer) const;
77 void GenerateParsingCode(io::Printer* printer) const;
78 void GenerateParsingDoneCode(io::Printer* printer) const;
79 void GenerateSerializationCode(io
[all...]
H A Djava_enum_field.h69 void GenerateInterfaceMembers(io::Printer* printer) const;
70 void GenerateMembers(io::Printer* printer) const;
71 void GenerateBuilderMembers(io::Printer* printer) const;
72 void GenerateInitializationCode(io::Printer* printer) const;
73 void GenerateBuilderClearCode(io::Printer* printer) const;
74 void GenerateMergingCode(io::Printer* printer) const;
75 void GenerateBuildingCode(io::Printer* printer) const;
76 void GenerateParsingCode(io::Printer* printer) const;
77 void GenerateParsingDoneCode(io::Printer* printer) const;
78 void GenerateSerializationCode(io
[all...]
H A Djava_primitive_field.h70 void GenerateInterfaceMembers(io::Printer* printer) const;
71 void GenerateMembers(io::Printer* printer) const;
72 void GenerateBuilderMembers(io::Printer* printer) const;
73 void GenerateInitializationCode(io::Printer* printer) const;
74 void GenerateBuilderClearCode(io::Printer* printer) const;
75 void GenerateMergingCode(io::Printer* printer) const;
76 void GenerateBuildingCode(io::Printer* printer) const;
77 void GenerateParsingCode(io::Printer* printer) const;
78 void GenerateParsingDoneCode(io::Printer* printer) const;
79 void GenerateSerializationCode(io
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DModuleSummaryIndexYAML.h19 static void enumeration(IO &io, TypeTestResolution::Kind &value) { in enumeration()
20 io.enumCase(value, "Unsat", TypeTestResolution::Unsat); in enumeration()
21 io.enumCase(value, "ByteArray", TypeTestResolution::ByteArray); in enumeration()
22 io.enumCase(value, "Inline", TypeTestResolution::Inline); in enumeration()
23 io.enumCase(value, "Single", TypeTestResolution::Single); in enumeration()
24 io.enumCase(value, "AllOnes", TypeTestResolution::AllOnes); in enumeration()
29 static void mapping(IO &io, TypeTestResolution &res) { in mapping()
30 io.mapOptional("Kind", res.TheKind); in mapping()
31 io.mapOptional("SizeM1BitWidth", res.SizeM1BitWidth); in mapping()
32 io in mapping()
[all...]
/third_party/alsa-lib/src/pcm/
H A Dpcm_ioplug.c59 ioplug_priv_t *io = pcm->private_data; in snd_pcm_ioplug_hw_ptr_update() local
62 hw = io->data->callback->pointer(io->data); in snd_pcm_ioplug_hw_ptr_update()
67 if ((snd_pcm_uframes_t)hw >= io->last_hw) in snd_pcm_ioplug_hw_ptr_update()
68 delta = hw - io->last_hw; in snd_pcm_ioplug_hw_ptr_update()
71 (io->data->flags & SND_PCM_IOPLUG_FLAG_BOUNDARY_WA) ? in snd_pcm_ioplug_hw_ptr_update()
73 delta = wrap_point + hw - io->last_hw; in snd_pcm_ioplug_hw_ptr_update()
75 snd_pcm_mmap_hw_forward(io->data->pcm, delta); in snd_pcm_ioplug_hw_ptr_update()
77 if (io->data->state == SND_PCM_STATE_DRAINING) { in snd_pcm_ioplug_hw_ptr_update()
82 io in snd_pcm_ioplug_hw_ptr_update()
112 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_delay() local
126 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_status() local
146 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_state() local
158 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_reset() local
169 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_prepare() local
288 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_hw_refine() local
433 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_hw_params() local
458 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_hw_free() local
467 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_sw_params() local
483 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_start() local
501 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_drop() local
516 ioplug_priv_t *io = pcm->private_data; ioplug_drain_via_poll() local
535 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_drain() local
581 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_pause() local
625 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_resume() local
638 ioplug_priv_t *io = pcm->private_data; ioplug_priv_transfer_areas() local
705 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_mmap_begin_capture() local
754 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_avail_update() local
769 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_nonblock() local
777 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_poll_descriptors_count() local
790 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_poll_descriptors() local
812 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_poll_revents() local
845 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_query_chmaps() local
855 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_get_chmap() local
865 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_set_chmap() local
875 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_dump() local
891 clear_io_params(ioplug_priv_t *io) clear_io_params() argument
900 ioplug_priv_t *io = pcm->private_data; snd_pcm_ioplug_close() local
1077 ioplug_priv_t *io; snd_pcm_ioplug_create() local
1140 ioplug_priv_t *io = ioplug->pcm->private_data; snd_pcm_ioplug_params_reset() local
1157 ioplug_priv_t *io = ioplug->pcm->private_data; snd_pcm_ioplug_set_param_list() local
1181 ioplug_priv_t *io = ioplug->pcm->private_data; snd_pcm_ioplug_set_param_minmax() local
[all...]
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message_field.h56 void GeneratePrivateMembers(io::Printer* printer) const;
57 void GenerateAccessorDeclarations(io::Printer* printer) const;
58 void GenerateInlineAccessorDefinitions(io::Printer* printer) const;
59 void GenerateNonInlineAccessorDefinitions(io::Printer* printer) const;
60 void GenerateInternalAccessorDeclarations(io::Printer* printer) const;
61 void GenerateInternalAccessorDefinitions(io::Printer* printer) const;
62 void GenerateClearingCode(io::Printer* printer) const;
63 void GenerateMessageClearingCode(io::Printer* printer) const;
64 void GenerateMergingCode(io::Printer* printer) const;
65 void GenerateSwappingCode(io
[all...]
H A Dcpp_string_field.h54 void GeneratePrivateMembers(io::Printer* printer) const;
55 void GenerateStaticMembers(io::Printer* printer) const;
56 void GenerateAccessorDeclarations(io::Printer* printer) const;
57 void GenerateInlineAccessorDefinitions(io::Printer* printer) const;
58 void GenerateNonInlineAccessorDefinitions(io::Printer* printer) const;
59 void GenerateClearingCode(io::Printer* printer) const;
60 void GenerateMessageClearingCode(io::Printer* printer) const;
61 void GenerateMergingCode(io::Printer* printer) const;
62 void GenerateSwappingCode(io::Printer* printer) const;
63 void GenerateConstructorCode(io
[all...]
H A Dcpp_primitive_field.h54 void GeneratePrivateMembers(io::Printer* printer) const;
55 void GenerateAccessorDeclarations(io::Printer* printer) const;
56 void GenerateInlineAccessorDefinitions(io::Printer* printer) const;
57 void GenerateClearingCode(io::Printer* printer) const;
58 void GenerateMergingCode(io::Printer* printer) const;
59 void GenerateSwappingCode(io::Printer* printer) const;
60 void GenerateConstructorCode(io::Printer* printer) const;
61 void GenerateCopyConstructorCode(io::Printer* printer) const;
62 void GenerateSerializeWithCachedSizesToArray(io::Printer* printer) const;
63 void GenerateByteSize(io
[all...]
H A Dcpp_message.h48 namespace io { namespace
77 void GenerateClassDefinition(io::Printer* printer);
81 void GenerateInlineMethods(io::Printer* printer);
86 void GenerateExtraDefaultFields(io::Printer* printer);
89 void GenerateFieldDefaultInstances(io::Printer* printer);
94 void GenerateDefaultInstanceInitializer(io::Printer* printer);
97 void GenerateClassMethods(io::Printer* printer);
100 void GenerateSourceInProto2Namespace(io::Printer* printer);
104 void GenerateFieldAccessorDeclarations(io::Printer* printer);
105 void GenerateFieldAccessorDefinitions(io
[all...]
H A Dcpp_file.h52 namespace io { namespace
75 void GenerateHeader(io::Printer* printer);
79 void GenerateProtoHeader(io::Printer* printer, const std::string& info_path);
82 void GeneratePBHeader(io::Printer* printer, const std::string& info_path);
83 void GenerateSource(io::Printer* printer);
87 void GenerateSourceForMessage(int idx, io::Printer* printer);
88 void GenerateGlobalSource(io::Printer* printer);
95 void IncludeFile(const std::string& google3_name, io::Printer* printer) { in IncludeFile()
99 io::Printer* printer) { in IncludeFileAndExport()
103 io
[all...]
H A Dcpp_enum_field.h53 void GeneratePrivateMembers(io::Printer* printer) const;
54 void GenerateAccessorDeclarations(io::Printer* printer) const;
55 void GenerateInlineAccessorDefinitions(io::Printer* printer) const;
56 void GenerateClearingCode(io::Printer* printer) const;
57 void GenerateMergingCode(io::Printer* printer) const;
58 void GenerateSwappingCode(io::Printer* printer) const;
59 void GenerateConstructorCode(io::Printer* printer) const;
60 void GenerateCopyConstructorCode(io::Printer* printer) const;
61 void GenerateSerializeWithCachedSizesToArray(io::Printer* printer) const;
62 void GenerateByteSize(io
[all...]
/third_party/rust/crates/rustix/src/path/
H A Darg.rs9 use crate::io;
47 /// use rustix::io;
52 /// pub fn touch<P: Arg>(path: P) -> io::Result<()> {
58 /// fn _touch(path: &CStr) -> io::Result<()> {
70 fn as_str(&self) -> io::Result<&str>; in as_str()
77 fn as_cow_c_str(&self) -> io::Result<Cow<'_, CStr>>; in to_string_lossy()
81 fn into_c_str<'b>(self) -> io::Result<Cow<'b, CStr>> in to_string_lossy()
86 fn into_with_c_str<T, F>(self, f: F) -> io::Result<T> in to_string_lossy()
89 F: FnOnce(&CStr) -> io::Result<T>; in to_string_lossy()
94 fn as_str(&self) -> io
[all...]
/third_party/skia/tools/viewer/
H A DImGuiLayer.cpp42 ImGuiIO& io = ImGui::GetIO(); in ImGuiLayer() local
45 io.KeyMap[ImGuiKey_Tab] = (int)skui::Key::kTab; in ImGuiLayer()
46 io.KeyMap[ImGuiKey_LeftArrow] = (int)skui::Key::kLeft; in ImGuiLayer()
47 io.KeyMap[ImGuiKey_RightArrow] = (int)skui::Key::kRight; in ImGuiLayer()
48 io.KeyMap[ImGuiKey_UpArrow] = (int)skui::Key::kUp; in ImGuiLayer()
49 io.KeyMap[ImGuiKey_DownArrow] = (int)skui::Key::kDown; in ImGuiLayer()
50 io.KeyMap[ImGuiKey_PageUp] = (int)skui::Key::kPageUp; in ImGuiLayer()
51 io.KeyMap[ImGuiKey_PageDown] = (int)skui::Key::kPageDown; in ImGuiLayer()
52 io.KeyMap[ImGuiKey_Home] = (int)skui::Key::kHome; in ImGuiLayer()
53 io in ImGuiLayer()
99 ImGuiIO& io = ImGui::GetIO(); onAttach() local
107 ImGuiIO& io = ImGui::GetIO(); onMouse() local
119 ImGuiIO& io = ImGui::GetIO(); onMouseWheel() local
132 ImGuiIO& io = ImGui::GetIO(); onPrePaint() local
222 ImGuiIO& io = ImGui::GetIO(); onKey() local
228 ImGuiIO& io = ImGui::GetIO(); onChar() local
[all...]
/third_party/alsa-lib/include/
H A Dpcm_ioplug.h131 int (*start)(snd_pcm_ioplug_t *io);
135 int (*stop)(snd_pcm_ioplug_t *io);
142 snd_pcm_sframes_t (*pointer)(snd_pcm_ioplug_t *io);
146 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io,
153 int (*close)(snd_pcm_ioplug_t *io);
157 int (*hw_params)(snd_pcm_ioplug_t *io, snd_pcm_hw_params_t *params);
161 int (*hw_free)(snd_pcm_ioplug_t *io);
165 int (*sw_params)(snd_pcm_ioplug_t *io, snd_pcm_sw_params_t *params);
169 int (*prepare)(snd_pcm_ioplug_t *io);
173 int (*drain)(snd_pcm_ioplug_t *io);
[all...]

Completed in 14 milliseconds

12345678910>>...94