Searched refs:lcc (Results 1 - 25 of 122) sorted by relevance

12345

/xsrc/external/mit/freetype/dist/builds/unix/
H A Ddetect.mk49 # 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 target
/xsrc/external/mit/xorg-server.old/dist/os/
H A Daccess.c1084 LocalClientCredRec *lcc; local in function:LocalClientCred
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 in function:GetLocalClientCreds
1210 FreeLocalClientCreds(LocalClientCredRec * lcc) argument
2030 LocalClientCredRec *lcc; local in function:siLocalCredAddrMatch
[all...]
H A Dconnection.c505 LocalClientCredRec *lcc; local in function:AuthAudit
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
[all...]
/xsrc/external/mit/xorg-server/dist/os/
H A Daccess.c1172 LocalClientCredRec *lcc; local in function:GetLocalClientCreds
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
1283 FreeLocalClientCreds(LocalClientCredRec * lcc) argument
2101 LocalClientCredRec *lcc; local in function:siLocalCredAddrMatch
[all...]
H A Dclient.c97 LocalClientCredRec *lcc = NULL; local in function:DetermineClientPid
106 if (GetLocalClientCreds(client, &lcc) != -1) {
107 if (lcc->fieldsSet & LCC_PID_SET)
108 pid = lcc->pid;
109 FreeLocalClientCreds(lcc);
H A Dconnection.c382 LocalClientCredRec *lcc; local in function:AuthAudit
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
[all...]
/xsrc/external/mit/freetype/dist/builds/windows/
H A Ddetect.mk106 $(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 target
H A Dw32-lcc.mk18 include $(TOP_DIR)/builds/compiler/win-lcc.mk
/xsrc/external/mit/xorg-server/dist/dix/
H A Dgrabs.c77 LocalClientCredRec *lcc; local in function:PrintDeviceGrabInfo
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);
H A Dwindow.c367 LocalClientCredRec *lcc; local in function:PrintPassiveGrabs
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/freetype/dist/builds/compiler/
H A Dunix-lcc.mk18 CC := lcc
H A Dwin-lcc.mk18 CC := lcc
/xsrc/external/mit/xorg-server.old/dist/Xext/
H A Dshm.c327 LocalClientCredRec *lcc; local in function:shm_access
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/
H A Dshm.c315 LocalClientCredRec *lcc; local in function:shm_access
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/libxkbui/dist/
H A Daclocal.m43558 lcc*)
5069 lcc*)
H A Dconfigure10960 lcc*)
11500 lcc*)
/xsrc/external/mit/xf86-video-imstt/dist/
H A Daclocal.m43558 lcc*)
5069 lcc*)
/xsrc/external/mit/xf86-video-intel-2014/dist/m4/
H A Dlibtool.m44168 lcc*)
6703 lcc*)
/xsrc/external/mit/xf86-video-intel-old/dist/m4/
H A Dlibtool.m43825 lcc*)
6162 lcc*)
/xsrc/external/mit/xf86-video-nsc/dist/
H A Daclocal.m43558 lcc*)
5072 lcc*)
/xsrc/external/mit/xf86-input-ws/dist/
H A Dconfigure12189 lcc*)
12776 lcc*)
/xsrc/external/mit/xorg-server.old/dist/m4/
H A Dlibtool.m43849 lcc*)
6246 lcc*)
/xsrc/external/mit/libXfontcache/dist/
H A Dconfigure12310 lcc*)
12897 lcc*)
/xsrc/external/mit/mesa-demos/dist/
H A Dconfigure14722 lcc*)
15361 lcc*)
/xsrc/external/mit/glu/dist/
H A Dconfigure14760 lcc*)
15399 lcc*)

Completed in 184 milliseconds

12345