| /xsrc/external/mit/libX11/dist/src/ |
| H A D | ReconfWM.c | 45 _XAsyncHandler async; local in function:XReconfigureWMWindow 82 async.next = dpy->async_handlers; 83 async.handler = _XAsyncErrorHandler; 84 async.data = (XPointer)&async_state; 85 dpy->async_handlers = &async; 114 DeqAsyncHandler(dpy, &async);
|
| H A D | GetWAttrs.c | 98 _XAsyncHandler async; local in function:_XGetWindowAttributes 106 async.next = dpy->async_handlers; 107 async.handler = _XWAttrsHandler; 108 async.data = (XPointer)&async_state; 109 dpy->async_handlers = &async; 116 DeqAsyncHandler(dpy, &async); 119 DeqAsyncHandler(dpy, &async);
|
| H A D | GetAtomNm.c | 145 _XAsyncHandler async; local in function:XGetAtomNames 158 async.next = dpy->async_handlers; 159 async.handler = _XGetAtomNameHandler; 160 async.data = (XPointer)&async_state; 161 dpy->async_handlers = &async; 181 DeqAsyncHandler(dpy, &async);
|
| H A D | XlibAsync.c | 80 register _XAsyncHandler *async; local in function:_XDeqAsyncHandler 83 (async = *prev) && (async != handler); 84 prev = &async->next) 86 if (async) 87 *prev = async->next;
|
| H A D | IntAtom.c | 252 _XAsyncHandler async; local in function:XInternAtoms 263 async.next = dpy->async_handlers; 264 async.handler = _XIntAtomHandler; 265 async.data = (XPointer)&async_state; 266 dpy->async_handlers = &async; 295 DeqAsyncHandler(dpy, &async);
|
| H A D | Font.c | 195 _XAsyncHandler async; local in function:_XQueryFont 205 async.next = dpy->async_handlers; 206 async.handler = _XAsyncErrorHandler; 207 async.data = (XPointer)&async_state; 208 dpy->async_handlers = &async; 214 DeqAsyncHandler(dpy, &async); 218 DeqAsyncHandler(dpy, &async);
|
| H A D | xcb_io.c | 390 _XAsyncHandler *async, *next; local in function:handle_response 394 for(async = dpy->async_handlers; async; async = next) 396 next = async->next; 397 if(async->handler(dpy, (xReply *) response, (char *) response, sizeof(xReply) + (response->length << 2), async->data)) 560 * eventually. iff there are async handlers, we may have just
|
| /xsrc/external/mit/MesaLib/dist/bin/pick/ |
| H A D | core_test.py | 250 async def mock(self, *_, **__): 254 async def communicate(self) -> typing.Tuple[bytes, bytes]: 258 async def wait(self) -> int: 262 async def return_true(*_, **__) -> bool: 266 async def return_false(*_, **__) -> bool: 270 async def test_fix_is_nominated(self): 282 async def test_fix_is_not_nominated(self): 294 async def test_cc_is_nominated(self): 305 async def test_cc_is_nominated2(self): 316 async de [all...] |
| H A D | core.py | 86 async def commit_state(*, amend: bool = False, message: str = 'Update') -> bool: 88 async with COMMIT_LOCK: 149 async def apply(self, ui: 'UI') -> typing.Tuple[bool, str]: 152 async with COMMIT_LOCK: 171 async def abort_cherry(self, ui: 'UI', err: str) -> None: 173 async with COMMIT_LOCK: 182 async def denominate(self, ui: 'UI') -> bool: 190 async def backport(self, ui: 'UI') -> bool: 198 async def resolve(self, ui: 'UI') -> None: 206 async de [all...] |
| H A D | ui.py | 74 async def apply(self) -> None: 75 async with self.ui.git_lock: 82 async def denominate(self) -> None: 83 async with self.ui.git_lock: 87 async def backport(self) -> None: 88 async with self.ui.git_lock: 151 async def update(self) -> None: 178 async def feedback(self, text: str) -> None: 199 async def apply_cb(edit: urwid.Edit) -> None:
|
| /xsrc/external/mit/MesaLib/dist/bin/ |
| H A D | gen_release_notes_test.py | 59 async def test_get_shortlog(): 67 async def test_gather_commits(): 152 async def test_parse_issues(content: str, bugs: typing.List[str]) -> None:
|
| H A D | gen_release_notes.py | 176 async def gather_commits(version: str) -> str: 185 async def parse_issues(commits: str) -> typing.List[str]: 209 async def gather_bugs(version: str) -> typing.List[str]: 214 async with aiohttp.ClientSession(loop=loop) as session: 223 async def get_bug(session: aiohttp.ClientSession, bug_id: str) -> str: 228 async with session.get(url, params=params) as response: 233 async def get_shortlog(version: str) -> str: 298 async def main() -> None:
|
| /xsrc/external/mit/libXrandr/dist/src/ |
| H A D | XrrScreen.c | 46 _XAsyncHandler async; local in function:doGetScreenResources 74 async.next = dpy->async_handlers; 75 async.handler = _XRRVersionHandler; 76 async.data = (XPointer) &async_state; 77 dpy->async_handlers = &async; 91 DeqAsyncHandler (dpy, &async); 98 DeqAsyncHandler (dpy, &async);
|
| H A D | XrrConfig.c | 201 _XAsyncHandler async; local in function:_XRRGetScreenInfo 228 async.next = dpy->async_handlers; 229 async.handler = _XRRVersionHandler; 230 async.data = (XPointer) &async_state; 231 dpy->async_handlers = &async; 244 DeqAsyncHandler (dpy, &async); 250 DeqAsyncHandler (dpy, &async);
|
| /xsrc/external/mit/libXtst/dist/src/ |
| H A D | XRecord.c | 943 _XAsyncHandler *async; member in struct:_record_async_state 968 DeqAsyncHandler(dpy, state->async); 969 Xfree(state->async); 975 DeqAsyncHandler(dpy, state->async); 976 Xfree(state->async); 984 DeqAsyncHandler(dpy, state->async); 985 Xfree(state->async); 1002 DeqAsyncHandler(dpy, state->async); 1003 Xfree(state->async); 1025 _XAsyncHandler *async; local in function:XRecordEnableContextAsync [all...] |
| /xsrc/external/mit/libX11/dist/src/xcms/ |
| H A D | cmsCmap.c | 88 _XAsyncHandler async; 169 async.next = dpy->async_handlers; 170 async.handler = _XAsyncErrorHandler; 171 async.data = (XPointer)&async_state; 172 dpy->async_handlers = &async; 195 DeqAsyncHandler(dpy, &async); 87 _XAsyncHandler async; local in function:CmapRecForColormap
|
| /xsrc/external/mit/libXt/dist/include/X11/ |
| H A D | EventI.h | 77 unsigned int async:1; /* not used, here for Digital extension? */ member in struct:_XtEventRec
|
| /xsrc/external/mit/libdrm/dist/exynos/ |
| H A D | exynos_drm.h | 131 __u64 async; member in struct:drm_exynos_g2d_exec
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/ |
| H A D | u_async_debug.c | 83 adbg->base.async = true;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| H A D | u_async_debug.c | 83 adbg->base.async = true;
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_debug.c | 136 cb.async = !_mesa_get_debug_state_int(st->ctx, GL_DEBUG_OUTPUT_SYNCHRONOUS);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/ |
| H A D | si_test_dma_perf.c | 278 printf("get_best_clear_for_%s(enum radeon_bo_domain dst, uint64_t size64, bool async, bool " 296 printf(" uint64_t size64, bool async, bool cached)\n"); 306 bool async = mode == 0; local in function:si_test_dma_perf 309 if (async) 310 puts(" if (async) { /* async compute */"); 338 if (async) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_debug.c | 178 cb.async = !_mesa_get_debug_state_int(st->ctx, GL_DEBUG_OUTPUT_SYNCHRONOUS);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/gen/ |
| H A D | gl_API.dtd | 125 marshal - One of "sync", "async", "draw", or "custom", defaulting to 126 async unless one of the arguments is something we know we can't 128 the Mesa implementation directly. If "async", we queue the function 131 If "draw", it will follow the "async" rules except that "indices" are
|
| /xsrc/external/mit/libXrender/dist/src/ |
| H A D | Xrender.c | 411 _XAsyncHandler async; local in function:XRenderQueryFormats 447 async.next = dpy->async_handlers; 448 async.handler = _XRenderVersionHandler; 449 async.data = (XPointer) &async_state; 450 dpy->async_handlers = &async; 458 DeqAsyncHandler (dpy, &async); 463 DeqAsyncHandler (dpy, &async);
|