Searched defs:permissions (Results 1 - 8 of 8) sorted by relevance

/system/bt/service/common/bluetooth/
H A Ddescriptor.h13 // See the License for the specific language governing permissions and
27 Descriptor(uint16_t handle, const UUID& uuid, uint16_t permissions) argument
28 : handle_(handle), uuid_(uuid), permissions_(permissions){};
37 uint16_t permissions() const { return permissions_; } function in class:bluetooth::Descriptor
H A Dcharacteristic.h13 // See the License for the specific language governing permissions and
30 uint16_t permissions,
35 permissions_(permissions),
48 uint16_t permissions() const { return permissions_; } function in class:bluetooth::Characteristic
29 Characteristic(uint16_t handle, const UUID& uuid, uint8_t properties, uint16_t permissions, const std::vector<Descriptor>& descriptors) argument
/system/tpm/tpm_manager/server/
H A Dlocal_data_store_impl.cc13 // See the License for the specific language governing permissions and
45 int permissions = 0; local
46 if (base::GetPosixFilePermissions(path, &permissions) &&
47 (permissions & ~kLocalDataPermissions) != 0) {
78 LOG(ERROR) << "Failed to set permissions for file: " << path.value();
/system/core/libbacktrace/
H A DBacktraceMap.cpp13 * See the License for the specific language governing permissions and
55 char permissions[5]; local
64 &start, &end, permissions, &name_pos) != 3) {
71 &start, &end, permissions, &name_pos) != 3) {
79 if (permissions[0] == 'r') {
82 if (permissions[1] == 'w') {
85 if (permissions[2] == 'x') {
/system/core/libkeyutils/
H A Dkeyutils.cpp65 long keyctl_setperm(key_serial_t id, int permissions) { argument
66 return keyctl(KEYCTL_SETPERM, id, permissions);
/system/core/libunwindstack/
H A DMaps.cpp13 * See the License for the specific language governing permissions and
59 char permissions[5]; local
64 &map_info->end, permissions, &map_info->offset, &name_pos) != 4) {
68 if (permissions[0] == 'r') {
71 if (permissions[1] == 'w') {
74 if (permissions[2] == 'x') {
/system/tpm/attestation/server/
H A Ddatabase_impl.cc13 // See the License for the specific language governing permissions and
101 int permissions = 0; local
102 if (base::GetPosixFilePermissions(path, &permissions) &&
103 (permissions & kMask) != 0) {
104 LOG(WARNING) << "Attempting to fix permissions on attestation database.";
105 base::SetPosixFilePermissions(path, permissions & ~kMask);
125 LOG(ERROR) << "Failed to set permissions for file: " << file_path.value();
/system/bt/service/
H A Dgatt_server_old.cc13 // See the License for the specific language governing permissions and
101 uint16_t permissions);
505 uint16_t permissions) {
511 .permissions = permissions});
625 int permissions) {
628 internal_->AddCharacteristic(id, properties, permissions);
641 int permissions) {
646 internal_->AddCharacteristic(id, properties, permissions);
653 // Control attributes have fixed permissions/propertie
503 AddCharacteristic(const UUID& uuid, uint8_t properties, uint16_t permissions) argument
624 AddCharacteristic(const UUID& id, int properties, int permissions) argument
640 AddBlob(const UUID& id, const UUID& control_id, int properties, int permissions) argument
[all...]

Completed in 125 milliseconds