| /xsrc/external/mit/freetype/dist/builds/windows/ |
| w32-lcc.mk | 2 # FreeType 2 configuration rules for Win32 + LCC 18 include $(TOP_DIR)/builds/compiler/win-lcc.mk
|
| detect.mk | 106 $(info $(empty) make setup lcc Win32-LCC) 154 ifneq ($(findstring lcc,$(MAKECMDGOALS)),) # LCC-Win32 155 CONFIG_FILE := w32-lcc.mk 156 CC := lcc 158 .PHONY: lcc 159 lcc: setup
|
| /xsrc/external/mit/freetype/dist/builds/unix/ |
| unix-lcc.mk | 2 # FreeType 2 Configuration rules for Unix + LCC 20 include $(TOP_DIR)/builds/compiler/unix-lcc.mk
|
| detect.mk | 49 # If `lcc' is the requested target, we use a special configuration 50 # file named `unix-lcc.mk'. It disables libtool for LCC. 52 ifneq ($(findstring lcc,$(MAKECMDGOALS)),) 53 CONFIG_FILE := unix-lcc.mk 54 CC := lcc 56 .PHONY: lcc 57 lcc: setup
|
| /xsrc/external/mit/freetype/dist/builds/compiler/ |
| win-lcc.mk | 2 # FreeType 2 Win32-LCC specific definitions 18 CC := lcc 70 # LCC is pure ANSI anyway!
|
| unix-lcc.mk | 2 # FreeType 2 Unix LCC specific definitions 18 CC := lcc 70 # LCC is pure ANSI anyway!
|
| /xsrc/external/mit/xorg-server.old/dist/os/ |
| access.c | 1084 LocalClientCredRec *lcc; local 1085 int ret = GetLocalClientCreds(client, &lcc); 1089 if ((lcc->fieldsSet & LCC_ZID_SET) && (lcc->zoneid != getzoneid())) { 1090 FreeLocalClientCreds(lcc); 1094 if ((lcc->fieldsSet & LCC_UID_SET) && (pUid != NULL)) 1095 *pUid = lcc->euid; 1096 if ((lcc->fieldsSet & LCC_GID_SET) && (pGid != NULL)) 1097 *pGid = lcc->egid; 1098 FreeLocalClientCreds(lcc); 1116 LocalClientCredRec *lcc; local 2030 LocalClientCredRec *lcc; local [all...] |
| connection.c | 505 LocalClientCredRec *lcc; local 541 if (GetLocalClientCreds(client, &lcc) != -1) { 547 if (lcc->fieldsSet & LCC_UID_SET) { 550 "uid=%ld ", (long) lcc->euid); 554 if (lcc->fieldsSet & LCC_GID_SET) { 557 "gid=%ld ", (long) lcc->egid); 561 if (lcc->fieldsSet & LCC_PID_SET) { 563 client_pid = lcc->pid; 567 "pid=%ld ", (long) lcc->pid); 571 if (lcc->fieldsSet & LCC_ZID_SET) [all...] |
| /xsrc/external/mit/xorg-server/dist/os/ |
| access.c | 1172 LocalClientCredRec *lcc; local 1205 lcc = *lccp; 1210 FreeLocalClientCreds(lcc); 1213 lcc->euid = ucred_geteuid(peercred); 1214 if (lcc->euid != -1) 1215 lcc->fieldsSet |= LCC_UID_SET; 1216 lcc->egid = ucred_getegid(peercred); 1217 if (lcc->egid != -1) 1218 lcc->fieldsSet |= LCC_GID_SET; 1219 lcc->pid = ucred_getpid(peercred) 2101 LocalClientCredRec *lcc; local [all...] |
| client.c | 97 LocalClientCredRec *lcc = NULL; local 106 if (GetLocalClientCreds(client, &lcc) != -1) { 107 if (lcc->fieldsSet & LCC_PID_SET) 108 pid = lcc->pid; 109 FreeLocalClientCreds(lcc);
|
| connection.c | 382 LocalClientCredRec *lcc; local 419 if (GetLocalClientCreds(client, &lcc) != -1) { 425 if (lcc->fieldsSet & LCC_UID_SET) { 428 "uid=%ld ", (long) lcc->euid); 432 if (lcc->fieldsSet & LCC_GID_SET) { 435 "gid=%ld ", (long) lcc->egid); 439 if (lcc->fieldsSet & LCC_PID_SET) { 441 client_pid = lcc->pid; 445 "pid=%ld ", (long) lcc->pid); 449 if (lcc->fieldsSet & LCC_ZID_SET) [all...] |
| /xsrc/external/mit/xorg-server/dist/dix/ |
| grabs.c | 77 LocalClientCredRec *lcc; local 99 else if (GetLocalClientCreds(client, &lcc) != -1) { 101 (lcc->fieldsSet & LCC_PID_SET) ? (long) lcc->pid : 0, 102 (lcc->fieldsSet & LCC_UID_SET) ? (long) lcc->euid : 0, 103 (lcc->fieldsSet & LCC_GID_SET) ? (long) lcc->egid : 0); 104 FreeLocalClientCreds(lcc);
|
| window.c | 367 LocalClientCredRec *lcc; local 385 if (GetLocalClientCreds(clients[i], &lcc) == -1) { 390 (lcc->fieldsSet & LCC_PID_SET) ? (long) lcc->pid : 0, 391 (lcc->fieldsSet & LCC_UID_SET) ? (long) lcc->euid : 0, 392 (lcc->fieldsSet & LCC_GID_SET) ? (long) lcc->egid : 0); 393 FreeLocalClientCreds(lcc);
|
| /xsrc/external/mit/xorg-server.old/dist/Xext/ |
| shm.c | 327 LocalClientCredRec *lcc; local 329 if (GetLocalClientCreds(client, &lcc) != -1) { 331 if (lcc->fieldsSet & LCC_UID_SET) { 332 uid = lcc->euid; 335 if (lcc->fieldsSet & LCC_GID_SET) { 336 gid = lcc->egid; 341 if ( ((lcc->fieldsSet & LCC_ZID_SET) == 0) || (lcc->zoneid == -1) 342 || (lcc->zoneid != SHMPERM_ZONEID(perm))) { 347 FreeLocalClientCreds(lcc); [all...] |
| /xsrc/external/mit/xorg-server/dist/Xext/ |
| shm.c | 315 LocalClientCredRec *lcc; local 317 if (GetLocalClientCreds(client, &lcc) != -1) { 319 if (lcc->fieldsSet & LCC_UID_SET) { 320 uid = lcc->euid; 323 if (lcc->fieldsSet & LCC_GID_SET) { 324 gid = lcc->egid; 329 if (((lcc->fieldsSet & LCC_ZID_SET) == 0) || (lcc->zoneid == -1) 330 || (lcc->zoneid != SHMPERM_ZONEID(perm))) { 335 FreeLocalClientCreds(lcc); [all...] |
| /xsrc/external/mit/xf86-input-ws/dist/ |
| configure | 12189 lcc*) 12776 lcc*)
|
| /xsrc/external/mit/glu/dist/ |
| configure | 14760 lcc*) 15399 lcc*)
|
| /xsrc/external/mit/libXfontcache/dist/ |
| configure | 12310 lcc*) 12897 lcc*)
|
| /xsrc/external/mit/libvdpau/dist/ |
| configure | 14645 lcc*) 15284 lcc*)
|
| /xsrc/external/mit/libxkbui/dist/ |
| configure | 10960 lcc*) 11500 lcc*)
|
| /xsrc/external/mit/mesa-demos/dist/ |
| configure | 14722 lcc*) 15361 lcc*)
|
| /xsrc/external/mit/xf86-video-imstt/dist/ |
| configure | 10967 lcc*) 11507 lcc*)
|
| /xsrc/external/mit/xf86-video-nsc/dist/ |
| configure | 10982 lcc*) 11522 lcc*)
|