Home
last modified time | relevance | path

Searched refs:rights (Results 1 – 25 of 4940) sorted by relevance

12345678910>>...198

/external/syzkaller/vendor/golang.org/x/sys/unix/
Dcap_freebsd.go46 func capver(rights *CapRights) int {
47 return caprver(rights.Rights[0])
50 func caparsize(rights *CapRights) int {
51 return capver(rights) + 2
55 func CapRightsSet(rights *CapRights, setrights []uint64) error {
57 if capver(rights) != CAP_RIGHTS_VERSION_00 {
58 return fmt.Errorf("bad rights version %d", capver(rights))
61 n := caparsize(rights)
77 if capidxbit(rights.Rights[i]) != capidxbit(right) {
80 rights.Rights[i] |= right
[all …]
/external/openssh/
Dsandbox-capsicum.c71 cap_rights_t rights; in ssh_sandbox_child() local
87 cap_rights_init(&rights); in ssh_sandbox_child()
89 if (cap_rights_limit(STDIN_FILENO, &rights) < 0 && errno != ENOSYS) in ssh_sandbox_child()
91 if (cap_rights_limit(STDOUT_FILENO, &rights) < 0 && errno != ENOSYS) in ssh_sandbox_child()
93 if (cap_rights_limit(STDERR_FILENO, &rights) < 0 && errno != ENOSYS) in ssh_sandbox_child()
96 cap_rights_init(&rights, CAP_READ, CAP_WRITE); in ssh_sandbox_child()
97 if (cap_rights_limit(box->monitor->m_recvfd, &rights) < 0 && in ssh_sandbox_child()
100 cap_rights_init(&rights, CAP_WRITE); in ssh_sandbox_child()
101 if (cap_rights_limit(box->monitor->m_log_sendfd, &rights) < 0 && in ssh_sandbox_child()
/external/strace/tests-m32/
Dpkey_alloc.c52 } rights[] = { in main() local
70 for (j = 0; j < ARRAY_SIZE(rights); j++) { in main()
71 rc = syscall(__NR_pkey_alloc, flags[i], rights[j].val); in main()
73 (unsigned long long) flags[i], rights[j].str, in main()
Dscm_rights-fd.test64 rights='\{cmsg_len='"$n"', cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data='"$rights_data"'\…
68 sendmsg\\(3$socket, $msg_head\\[$rights\\]$msg_tail\\}, 0\\) = 15
69 recvmsg\\(0$socket, $msg_head\\[$creds, $rights\\]$msg_tail\\}, 0\\) = 15
/external/strace/tests-mx32/
Dpkey_alloc.c52 } rights[] = { in main() local
70 for (j = 0; j < ARRAY_SIZE(rights); j++) { in main()
71 rc = syscall(__NR_pkey_alloc, flags[i], rights[j].val); in main()
73 (unsigned long long) flags[i], rights[j].str, in main()
Dscm_rights-fd.test64 rights='\{cmsg_len='"$n"', cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data='"$rights_data"'\…
68 sendmsg\\(3$socket, $msg_head\\[$rights\\]$msg_tail\\}, 0\\) = 15
69 recvmsg\\(0$socket, $msg_head\\[$creds, $rights\\]$msg_tail\\}, 0\\) = 15
/external/strace/tests/
Dpkey_alloc.c52 } rights[] = { in main() local
70 for (j = 0; j < ARRAY_SIZE(rights); j++) { in main()
71 rc = syscall(__NR_pkey_alloc, flags[i], rights[j].val); in main()
73 (unsigned long long) flags[i], rights[j].str, in main()
Dscm_rights-fd.test64 rights='\{cmsg_len='"$n"', cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data='"$rights_data"'\…
68 sendmsg\\(3$socket, $msg_head\\[$rights\\]$msg_tail\\}, 0\\) = 15
69 recvmsg\\(0$socket, $msg_head\\[$creds, $rights\\]$msg_tail\\}, 0\\) = 15
/external/python/cpython2/Doc/
Dcopyright.rst7 Copyright © 2001-2018 Python Software Foundation. All rights reserved.
9 Copyright © 2000 BeOpen.com. All rights reserved.
11 Copyright © 1995-2000 Corporation for National Research Initiatives. All rights
14 Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
/external/python/cpython3/Doc/
Dcopyright.rst7 Copyright © 2001-2019 Python Software Foundation. All rights reserved.
9 Copyright © 2000 BeOpen.com. All rights reserved.
11 Copyright © 1995-2000 Corporation for National Research Initiatives. All rights
14 Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
/external/libxml2/result/
Disolat3.rde6 <!ENTITY rights "All rights reserved" >
8 &#xA9; 1947 %pub;. &rights;" >
19 © 1947 Éditions Gallimard. &rights;
Disolat3.rdr6 <!ENTITY rights "All rights reserved" >
8 &#xA9; 1947 %pub;. &rights;" >
19 © 1947 Éditions Gallimard. &rights;
/external/ImageMagick/MagickCore/
Dpolicy.c87 rights; member
112 rights; member
231 policy_info->rights=p->rights; in AcquirePolicyCache()
595 const PolicyRights rights,const char *pattern) in IsRightsAuthorized() argument
612 CommandOptionToMnemonic(MagickPolicyRightsOptions,rights),pattern); in IsRightsAuthorized()
627 if ((rights & ReadPolicyRights) != 0) in IsRightsAuthorized()
628 authorized=(p->rights & ReadPolicyRights) != 0 ? MagickTrue : in IsRightsAuthorized()
630 if ((rights & WritePolicyRights) != 0) in IsRightsAuthorized()
631 authorized=(p->rights & WritePolicyRights) != 0 ? MagickTrue : in IsRightsAuthorized()
633 if ((rights & ExecutePolicyRights) != 0) in IsRightsAuthorized()
[all …]
Dstatic.c132 rights; in InvokeStaticImageFilter() local
138 rights=ReadPolicyRights; in InvokeStaticImageFilter()
139 if (IsRightsAuthorized(FilterPolicyDomain,rights,tag) == MagickFalse) in InvokeStaticImageFilter()
224 rights; in RegisterStaticModule() local
239 rights=ReadPolicyRights; in RegisterStaticModule()
240 if (IsRightsAuthorized(ModulePolicyDomain,rights,module) == MagickFalse) in RegisterStaticModule()
/external/toolchain-utils/go/patch/
Dgo1.patch10 // Copyright 2014 The Go Authors. All rights reserved.
23 // Copyright 2011 The Go Authors. All rights reserved.
36 // Copyright 2015 The Go Authors. All rights reserved.
49 // Copyright 2013 The Go Authors. All rights reserved.
62 // Copyright 2015 The Go Authors. All rights reserved.
/external/pcre/dist2/
DAUTHORS12 All rights reserved
23 All rights reserved.
34 All rights reserved.
/external/syzkaller/sys/fuchsia/
Dhandles.txt1 # Copyright 2017 syzkaller project authors. All rights reserved.
10 zx_handle_duplicate(handle zx_handle, rights flags[zx_rights], out ptr[out, zx_handle])
11 zx_handle_replace(handle zx_handle, rights flags[zx_rights], out ptr[out, zx_handle])
/external/ppp/pppd/
DNOTICE6 Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved.
44 Copyright (c) 1995 Pedro Roque Marques. All rights reserved.
75 Copyright (C) 2000-2004 Paul Mackerras. All rights reserved.
76 Copyright (c) 1994-2002 Paul Mackerras. All rights reserved.
77 Copyright (c) 2003 Paul Mackerras. All rights reserved.
78 Copyright (c) 1996-2002 Paul Mackerras. All rights reserved.
79 Copyright (c) 1999-2004 Paul Mackerras. All rights reserved.
80 Copyright (c) 2000-2002 Paul Mackerras. All rights reserved.
81 Copyright (c) 1999-2002 Paul Mackerras. All rights reserved.
107 Copyright (c) 1995 Eric Rosenquist. All rights reserved.
[all …]
/external/google-styleguide/
DNOTICE83 g. "You" means an individual or entity exercising rights under this
86 Licensor to exercise rights under this License despite a previous
105 limit, or restrict any uses free from copyright or rights arising from
112 exercise the rights in the Work as stated below:
132 exercise by You of the rights granted under this License;
137 of the rights granted under this License; and,
142 by You of the rights granted under this License.
144 The above rights may be exercised in all media and formats whether now
145 known or hereafter devised. The above rights include the right to make
146 such modifications as are technically necessary to exercise the rights in
[all …]
DLICENSE83 g. "You" means an individual or entity exercising rights under this
86 Licensor to exercise rights under this License despite a previous
105 limit, or restrict any uses free from copyright or rights arising from
112 exercise the rights in the Work as stated below:
132 exercise by You of the rights granted under this License;
137 of the rights granted under this License; and,
142 by You of the rights granted under this License.
144 The above rights may be exercised in all media and formats whether now
145 known or hereafter devised. The above rights include the right to make
146 such modifications as are technically necessary to exercise the rights in
[all …]
/external/dng_sdk/
DPATENTS13 Grant of rights
48 Adobe may revoke the rights granted above to any individual or
61 The rights granted herein are provided on an as-is basis without
71 Reservation of rights
73 All rights not expressly granted herein are reserved.
/external/antlr/runtime/JavaScript/build/
Dlicense.txt2 Copyright (c) 2003-2008 Terence Parr. All rights reserved.
7 Copyright (c) 2008, Yahoo! Inc. All rights reserved.
/external/junit/
DLICENSE-junit.txt62 intellectual property rights of any other entity. Each Contributor disclaims
64 infringement of intellectual property rights or otherwise. As a condition to
65 exercising the rights and licenses granted hereunder, each Recipient hereby
66 assumes sole responsibility to secure any other intellectual property rights
72 copyright rights in its Contribution, if any, to grant the copyright license
154 of rights under this Agreement, including but not limited to the risks and
179 hardware) infringes such Recipient's patent(s), then such Recipient's rights
183 All Recipient's rights under this Agreement shall terminate if it fails to
186 such noncompliance. If all Recipient's rights under this Agreement terminate,
204 in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
[all …]
/external/kotlinc/license/third_party/testdata/
Declipse_license.txt62 patent or other intellectual property rights of any other entity.
65 property rights or otherwise. As a condition to exercising the
66 rights and licenses granted hereunder, each Recipient hereby assumes
67 sole responsibility to secure any other intellectual property rights
74 copyright rights in its Contribution, if any, to grant the copyright
155 exercise of rights under this Agreement , including but not limited to the
182 infringes such Recipient's patent(s), then such Recipient's rights granted
185 All Recipient's rights under this Agreement shall terminate if it fails to
188 aware of such noncompliance. If all Recipient's rights under this
207 stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
[all …]
/external/emma/
DNOTICE40 Program does not infringe the patent or other intellectual property rights of any other entity. Eac…
41 …ased on infringement of intellectual property rights or otherwise. As a condition to exercising th…
42 responsibility to secure any other intellectual property rights needed, if any. For example, if a t…
45 …d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Con…
98 …buting the Program and assumes all risks associated with its exercise of rights under this Agreeme…
116 software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted un…
118 All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the m…
119 reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights und…
128 version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights o…
129 whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly g…
[all …]

12345678910>>...198