Searched refs:permissions (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DState.h74 GetPermissionsAsCString (uint32_t permissions);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DState.cpp44 lldb_private::GetPermissionsAsCString (uint32_t permissions) argument
46 switch (permissions)
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DMemory.h85 uint32_t permissions,
166 uint32_t permissions,
177 uint32_t permissions,
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DFile.cpp73 File::File(const char *path, uint32_t options, uint32_t permissions) : argument
79 Open (path, options, permissions);
187 File::Open (const char *path, uint32_t options, uint32_t permissions) argument
226 if (permissions & ePermissionsUserRead) mode |= S_IRUSR;
227 if (permissions & ePermissionsUserWrite) mode |= S_IWUSR;
228 if (permissions & ePermissionsUserExecute) mode |= S_IXUSR;
229 if (permissions & ePermissionsGroupRead) mode |= S_IRGRP;
230 if (permissions & ePermissionsGroupWrite) mode |= S_IWGRP;
231 if (permissions & ePermissionsGroupExecute) mode |= S_IXGRP;
232 if (permissions
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DMemory.cpp210 uint32_t permissions,
214 m_permissions (permissions),
384 uint32_t permissions,
393 addr_t addr = m_process.DoAllocateMemory(page_byte_size, permissions, error);
398 log->Printf ("Process::DoAllocateMemory (byte_size = 0x%8.8zx, permissions = %s) => 0x%16.16" PRIx64,
400 GetPermissionsAsCString(permissions),
406 block_sp.reset (new AllocatedBlock (addr, page_byte_size, permissions, chunk_size));
407 m_memory_map.insert (std::make_pair (permissions, block_sp));
414 uint32_t permissions,
420 std::pair<PermissionsToBlockMap::iterator, PermissionsToBlockMap::iterator> range = m_memory_map.equal_range (permissions);
208 AllocatedBlock(lldb::addr_t addr, uint32_t byte_size, uint32_t permissions, uint32_t chunk_size) argument
383 AllocatePage(uint32_t byte_size, uint32_t permissions, uint32_t chunk_size, Error &error) argument
413 AllocateMemory(size_t byte_size, uint32_t permissions, Error &error) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DFileOutputBuffer.cpp85 sys::fs::perms new_perms = Stat2.permissions();
93 EC = sys::fs::permissions(Twine(TempFilePath), new_perms);
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DIRMemoryMap.h52 lldb::addr_t Malloc (size_t size, uint8_t alignment, uint32_t permissions, AllocationPolicy policy, Error &error);
85 uint32_t m_permissions; ///< The access permissions on the memory in the process. In the host, the memory is always read/write.
96 uint32_t permissions,
H A DIRExecutionUnit.h331 /// permissions can be applied. Currently unimplemented for LLDB.
486 uint32_t permissions,
492 m_permissions(permissions),
485 AllocationRecord(uintptr_t host_address, uint32_t permissions, size_t size, unsigned alignment, unsigned section_id = eSectionIDInvalid) argument
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Include/
H A Dtest.ksh18 * See the License for the specific language governing permissions
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFile.h103 /// File::Open (const char *path, uint32_t options, uint32_t permissions).
111 /// @param[in] permissions
114 /// @see File::Open (const char *path, uint32_t options, uint32_t permissions)
118 uint32_t permissions = ePermissionsDefault);
207 /// @param[in] permissions
213 uint32_t permissions = ePermissionsDefault);
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Derr.chillbadarg.ksh10 * See the License for the specific language governing permissions
H A Derr.copyoutbadaddr.ksh10 * See the License for the specific language governing permissions
H A Derr.copyoutstrbadaddr.ksh10 * See the License for the specific language governing permissions
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRMemoryMap.cpp206 uint32_t permissions,
212 m_permissions (permissions),
235 IRMemoryMap::Malloc (size_t size, uint8_t alignment, uint32_t permissions, AllocationPolicy policy, Error &error) argument
270 allocation_address = process_sp->AllocateMemory(allocation_size, permissions, error);
292 allocation_address = process_sp->AllocateMemory(allocation_size, permissions, error);
319 permissions,
346 (uint64_t)permissions,
203 Allocation(lldb::addr_t process_alloc, lldb::addr_t process_start, size_t size, uint32_t permissions, uint8_t alignment, AllocationPolicy policy) argument
/freebsd-10.0-release/contrib/apr/misc/unix/
H A Drandbyte_os2.inc13 * See the License for the specific language governing permissions and
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLLDB.cpp289 uint32_t permissions; local
290 if (process->GetLoadAddressPermissions(pc, permissions)
291 && (permissions & ePermissionsExecutable) == 0)
349 // cfa_regval should point into the stack memory; if we can query memory region permissions,
351 if (process->GetLoadAddressPermissions(cfa_regval, permissions)
352 && (permissions & ePermissionsReadable) == 0)
655 uint32_t permissions; local
658 || (process->GetLoadAddressPermissions(current_pc_addr, permissions)
659 && (permissions & ePermissionsExecutable) == 0))
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.cpp567 ProcessPOSIX::DoAllocateMemory(size_t size, uint32_t permissions, argument
573 if (permissions & lldb::ePermissionsReadable)
575 if (permissions & lldb::ePermissionsWritable)
577 if (permissions & lldb::ePermissionsExecutable)
586 error.SetErrorStringWithFormat("unable to allocate %zu bytes of memory with permissions %s", size, GetPermissionsAsCString (permissions));
H A DProcessPOSIX.h98 DoAllocateMemory(size_t size, uint32_t permissions,
/freebsd-10.0-release/contrib/dialog/package/
H A Ddialog.spec84 - add executable permissions for shared libraries, discard ".la" file.
/freebsd-10.0-release/contrib/gcc/config/i386/
H A Dsol2-ci.asm11 ! In addition to the permissions in the GNU General Public License, the
/freebsd-10.0-release/contrib/gcc/config/ia64/
H A Dcrti.asm9 # In addition to the permissions in the GNU General Public License, the
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Drep-cache-db.sql19 * specific language governing permissions and limitations
/freebsd-10.0-release/usr.sbin/newsyslog/
H A Dnewsyslog.c169 unsigned int permissions; /* File permissions on the log */ member in struct:conf_entry
406 tempwork->permissions = src_entry->permissions;
424 tempwork->permissions = 0;
868 defconf->permissions = S_IRUSR|S_IWUSR;
1186 if (!sscanf(q, "%o", &working->permissions))
1187 errx(1, "error in config file; bad permissions:\n%s",
2607 printf("\tchmod %o %s\n", ent->permissions, tempfile);
2610 failed = fchmod(fd, ent->permissions);
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DFileSystem.h174 perms permissions() const { return Perms; } function in class:llvm::sys::fs::file_status
178 void permissions(perms p) { Perms = p; } function in class:llvm::sys::fs::file_status
458 /// @returns errc::success if permissions have been changed, otherwise a
460 error_code permissions(const Twine &path, perms prms);
/freebsd-10.0-release/contrib/gcc/config/arm/
H A Dcrti.asm9 # In addition to the permissions in the GNU General Public License, the

Completed in 204 milliseconds

12