Home
last modified time | relevance | path

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

/l4re-core-master/sigma0/server/src/
A Dmem_man.cc45 if (n && n->owner() == r.owner() && n->rights() == r.rights()) in add()
65 if (n && n->owner() == r.owner() && n->rights() == r.rights()) in add()
131 if (r2->owner() && r2->owner() != r.owner()) in alloc_from()
134 if (r2->owner() == r.owner() && r2->rights() == r.rights()) in alloc_from()
262 if (r2->owner() && r2->owner() != r.owner()) in reserve()
266 if (*r2 == r && (r2->owner() != r.owner() || r2->rights() != r.rights())) in reserve()
279 if (r2->contains(r) && r2->owner() == r.owner()) in reserve()
324 if (r2->owner()) in reserve()
331 if (r2->owner()) in reserve()
346 if (i->owner()) in morecore()
[all …]
A Dregion.h24 Region(unsigned long start, unsigned long end, unsigned owner = 0 /*free*/,
26 : _l((start & ~Owner_mask) | owner), _h(end), _rights(rights)
30 unsigned owner() const { return _l & Owner_mask; } in owner() function
40 void owner(unsigned owner) const { _l = (_l & ~Owner_mask) | owner; } in owner() argument
57 static Region bs(unsigned long start, unsigned long size, unsigned owner = 0,
63 return Region(start, start + size - 1, owner, rights);
66 static Region kr(unsigned long start, unsigned long end, unsigned owner = 0,
68 { return bs(start, end - start, owner, rights); }
75 os << '[' << r.owner() << ':' << ((r.rights() & L4_FPAGE_RO) ? 'R' : '-')
A Dmem_man.h45 unsigned long alloc_first(unsigned long size, unsigned owner = sigma0_taskno);
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/
A Dchown.c16 int chown(const char *path, uid_t owner, gid_t group) in chown() argument
18 return fchownat(AT_FDCWD, path, owner, group, 0); in chown()
29 _syscall3(int, chown, const char *, path, uid_t, owner, gid_t, group)
35 __kernel_uid_t, owner, __kernel_gid_t, group)
37 int chown(const char *path, uid_t owner, gid_t group)
39 if (((owner + 1) > (uid_t) ((__kernel_uid_t) - 1U))
44 return (__syscall_chown(path, owner, group));
A Dlchown.c16 int lchown(const char *path, uid_t owner, gid_t group) in lchown() argument
18 return fchownat(AT_FDCWD, path, owner, group, AT_SYMLINK_NOFOLLOW); in lchown()
29 _syscall3(int, lchown, const char *, path, uid_t, owner, gid_t, group)
35 __kernel_uid_t, owner, __kernel_gid_t, group)
37 int lchown(const char *path, uid_t owner, gid_t group)
39 if (((owner + 1) > (uid_t) ((__kernel_uid_t) - 1U))
44 return __syscall_lchown(path, owner, group);
A Dfchown.c20 _syscall3(int, fchown, int, fd, uid_t, owner, gid_t, group)
26 __kernel_uid_t, owner, __kernel_gid_t, group)
28 int fchown(int fd, uid_t owner, gid_t group)
30 if (((owner + 1) > (uid_t) ((__kernel_uid_t) - 1U))
35 return (__syscall_fchown(fd, owner, group));
A Dfchownat.c13 _syscall5(int, fchownat, int, fd, const char *, file, uid_t, owner, gid_t, group, int, flag)
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/pthread/bits/
A Dstdio-lock.h29 typedef struct { int lock; int cnt; void *owner; } _IO_lock_t; member
42 if ((_name).owner != __meself) \
45 (_name).owner = __meself; \
54 if ((_name).owner != __meself) \
58 (_name).owner = __meself; \
73 (_name).owner = NULL; \
A Dlibc-lock.h47 typedef struct { int lock; int cnt; void *owner; } __libc_lock_recursive_t; member
261 if ((NAME).owner != self) \
264 (NAME).owner = self; \
292 if ((NAME).owner != self) \
296 (NAME).owner = self; \
332 (NAME).owner = NULL; \
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/c++17/
A Dmemory_resource.cc1079 _TPools(synchronized_pool_resource& owner, exclusive_lock&) in _TPools()
1080 : owner(owner), pools(owner._M_impl._M_alloc_pools()) in _TPools()
1092 memory_resource* r = owner.upstream_resource(); in ~_TPools()
1093 for (int i = 0; i < owner._M_impl._M_npools; ++i) in ~_TPools()
1095 std::destroy_n(pools, owner._M_impl._M_npools); in ~_TPools()
1097 a.deallocate(pools, owner._M_impl._M_npools); in ~_TPools()
1112 memory_resource* const r = owner.upstream_resource(); in move_nonempty_chunks()
1113 auto* const shared = owner._M_tpools->pools; in move_nonempty_chunks()
1115 for (int i = 0; i < owner._M_impl._M_npools; ++i) in move_nonempty_chunks()
1121 synchronized_pool_resource& owner; member
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++17/
A Dmemory_resource.cc1079 _TPools(synchronized_pool_resource& owner, exclusive_lock&) in _TPools()
1080 : owner(owner), pools(owner._M_impl._M_alloc_pools()) in _TPools()
1092 memory_resource* r = owner.upstream_resource(); in ~_TPools()
1093 for (int i = 0; i < owner._M_impl._M_npools; ++i) in ~_TPools()
1095 std::destroy_n(pools, owner._M_impl._M_npools); in ~_TPools()
1097 a.deallocate(pools, owner._M_impl._M_npools); in ~_TPools()
1112 memory_resource* const r = owner.upstream_resource(); in move_nonempty_chunks()
1113 auto* const shared = owner._M_tpools->pools; in move_nonempty_chunks()
1115 for (int i = 0; i < owner._M_impl._M_npools; ++i) in move_nonempty_chunks()
1121 synchronized_pool_resource& owner; member
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/
A Dmemory_resource.cc1105 _TPools(synchronized_pool_resource& owner, exclusive_lock&) in _TPools()
1106 : owner(owner), pools(owner._M_impl._M_alloc_pools()) in _TPools()
1118 memory_resource* r = owner.upstream_resource(); in ~_TPools()
1119 for (int i = 0; i < owner._M_impl._M_npools; ++i) in ~_TPools()
1121 std::destroy_n(pools, owner._M_impl._M_npools); in ~_TPools()
1123 a.deallocate(pools, owner._M_impl._M_npools); in ~_TPools()
1138 memory_resource* const r = owner.upstream_resource(); in move_nonempty_chunks()
1139 auto* const shared = owner._M_tpools->pools; in move_nonempty_chunks()
1141 for (int i = 0; i < owner._M_impl._M_npools; ++i) in move_nonempty_chunks()
1147 synchronized_pool_resource& owner; member
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/pstl/
A DLICENSE.txt16 "Licensor" shall mean the copyright owner or entity authorized by
17 the copyright owner that is granting the License.
55 submitted to Licensor for inclusion in the Work by the copyright owner
57 the copyright owner. For the purposes of this definition, "submitted"
64 designated in writing by the copyright owner as "Not a Contribution."
193 Copyright [yyyy] [name of copyright owner]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/pstl/
A DLICENSE.txt16 "Licensor" shall mean the copyright owner or entity authorized by
17 the copyright owner that is granting the License.
55 submitted to Licensor for inclusion in the Work by the copyright owner
57 the copyright owner. For the purposes of this definition, "submitted"
64 designated in writing by the copyright owner as "Not a Contribution."
193 Copyright [yyyy] [name of copyright owner]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/pstl/
A DLICENSE.txt16 "Licensor" shall mean the copyright owner or entity authorized by
17 the copyright owner that is granting the License.
55 submitted to Licensor for inclusion in the Work by the copyright owner
57 the copyright owner. For the purposes of this definition, "submitted"
64 designated in writing by the copyright owner as "Not a Contribution."
193 Copyright [yyyy] [name of copyright owner]
/l4re-core-master/lua/lib/contrib/src/
A Dlapi.c1350 GCObject **owner) { in aux_upvalue() argument
1357 if (owner) *owner = obj2gco(f); in aux_upvalue()
1367 if (owner) *owner = obj2gco(f->upvals[n - 1]); in aux_upvalue()
1393 GCObject *owner = NULL; /* to avoid warnings */ in lua_setupvalue() local
1398 name = aux_upvalue(fi, n, &val, &owner); in lua_setupvalue()
1402 luaC_barrier(L, owner, val); in lua_setupvalue()
/l4re-core-master/l4sys/include/ARCH-mips/
A Dktrace_events.h219 L4_ktrace_t__Context *owner; /* 48+8 */ member
447 L4_ktrace_t__Context *owner; /* 36+4 */ member
/l4re-core-master/l4sys/include/ARCH-arm/
A Dktrace_events.h216 L4_ktrace_t__Context *owner; /* 36+4 */ member
/l4re-core-master/l4sys/include/ARCH-arm64/
A Dktrace_events.h218 L4_ktrace_t__Context *owner; /* 48+8 */ member
/l4re-core-master/l4sys/include/ARCH-ppc32/
A Dktrace_events.h202 L4_ktrace_t__Context *owner; /* 36+4 */ member
/l4re-core-master/l4sys/include/ARCH-sparc/
A Dktrace_events.h202 L4_ktrace_t__Context *owner; /* 36+4 */ member
/l4re-core-master/l4sys/include/ARCH-amd64/
A Dktrace_events.h219 L4_ktrace_t__Context *owner; /* 48+8 */ member
/l4re-core-master/l4sys/include/ARCH-x86/
A Dktrace_events.h217 L4_ktrace_t__Context *owner; /* 36+4 */ member
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/
A Dlinuxthreads.texi687 owner. This is non-portable behavior and must not be relied upon.
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/
A DChangeLog2348 * pthread_mutex_lock.c: Preserve FUTEX_WAITERS bit when dead owner
3324 but the owner for all robust mutex types.

Completed in 66 milliseconds