Searched refs:permissions (Results 76 - 100 of 435) sorted by path

1234567891011>>

/external/jetty/src/java/org/eclipse/jetty/webapp/
H A DWebAppClassLoader.java87 * @return Returns the permissions.
297 PermissionCollection permissions=_context.getPermissions();
298 PermissionCollection pc= (permissions == null) ? super.getPermissions(cs) : permissions;
H A DWebAppContext.java638 * @return Returns the permissions.
1034 * @param permissions The permissions to set.
1036 public void setPermissions(PermissionCollection permissions) argument
1038 _permissions = permissions;
/external/jmdns/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/jpeg/
H A Dmips_idct_le.S13 # See the License for the specific language governing permissions and
/external/jsilver/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/jsr305/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/junit/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/libnfc-nci/halimpl/pn54x/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/
H A Dssvnc.tcl9860 catch {file attributes $pem -permissions go-rw}
9861 catch {file attributes $crt -permissions go-w}
10317 catch {file attributes $import_save_file -permissions go-w}
10319 catch {file attributes $import_save_file -permissions go-rw}
12939 additional setup and permissions.
/external/libvncserver/x11vnc/
H A Dtkx11vnc609 permissions, or disconnect them.
626 Alternatively, you can fine tune the VNC client's input permissions
2151 append_text "\nUse these checkboxes to set the input permissions, "
2297 append_text "\nUse these checkboxes to set the input permissions "
6818 file attributes $tmp -permissions "0400"
/external/libxml2/doc/
H A DbuildDocBookCatalog41 echo Checking path $ROOTCATALOG for permissions
/external/linux-tools-perf/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/linux-tools-perf/src/tools/perf/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/littlemock/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/lldb/include/lldb/Core/
H A DState.h74 GetPermissionsAsCString (uint32_t permissions);
/external/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h331 /// permissions can be applied. Currently unimplemented for LLDB.
460 uint32_t permissions,
466 m_permissions(permissions),
459 AllocationRecord(uintptr_t host_address, uint32_t permissions, size_t size, unsigned alignment, unsigned section_id = eSectionIDInvalid) argument
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,
/external/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);
/external/lldb/include/lldb/Target/
H A DMemory.h85 uint32_t permissions,
166 uint32_t permissions,
177 uint32_t permissions,
H A DProcess.h2931 DoAllocateMemory (size_t size, uint32_t permissions, Error &error) argument
2948 /// @param[in] permissions
2949 /// Or together any of the lldb::Permissions bits. The permissions on
2962 AllocateMemory (size_t size, uint32_t permissions, Error &error);
3029 /// @param[out] permissions
3041 GetLoadAddressPermissions (lldb::addr_t load_addr, uint32_t &permissions) argument
3044 permissions = 0;
3056 permissions |= lldb::ePermissionsReadable;
3059 permissions |= lldb::ePermissionsWritable;
3062 permissions |
[all...]
/external/lldb/source/Core/
H A DState.cpp44 lldb_private::GetPermissionsAsCString (uint32_t permissions) argument
46 switch (permissions)
/external/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
/external/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...]
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.cpp668 ProcessKDP::DoAllocateMemory (size_t size, uint32_t permissions, Error &error) argument
H A DProcessKDP.h166 DoAllocateMemory (size_t size, uint32_t permissions, lldb_private::Error &error);

Completed in 792 milliseconds

1234567891011>>