Searched refs:allowed (Results 1 - 18 of 18) sorted by relevance

/haiku/src/tests/servers/app/benchmark/
H A DTestWindow.cpp68 TestWindow::SetAllowedToQuit(bool allowed) argument
70 fAllowedToQuit = allowed;
H A DTestWindow.h46 void SetAllowedToQuit(bool allowed);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DMetadataCache.h37 status_t GetAccess(uid_t uid, uint32* allowed);
38 void SetAccess(uid_t uid, uint32 allowed);
H A DMetadataCache.cpp89 MetadataCache::GetAccess(uid_t uid, uint32* allowed) argument
91 ASSERT(allowed != NULL);
106 *allowed = it.Current().fAllowed;
113 MetadataCache::SetAccess(uid_t uid, uint32 allowed) argument
121 entry.fAllowed = allowed;
H A DNFS4Inode.h29 status_t Access(uint32* allowed);
H A DInodeRegular.cpp151 uint32 allowed = 0; local
153 allowed |= R_OK;
155 allowed |= W_OK;
157 status_t result = Access(allowed);
H A DInode.cpp450 uint32 allowed; local
452 status_t result = fMetaCache.GetAccess(geteuid(), &allowed);
454 result = NFS4Inode::Access(&allowed);
457 fMetaCache.SetAccess(geteuid(), allowed);
460 if ((allowed & ACCESS4_READ) != 0)
463 if ((allowed & ACCESS4_LOOKUP) != 0)
466 if ((allowed & ACCESS4_EXECUTE) != 0)
469 if ((allowed & ACCESS4_MODIFY) != 0)
H A DFileSystem.cpp190 uint32 allowed; local
191 result = reply.Access(NULL, &allowed);
194 else if ((allowed & (ACCESS4_READ | ACCESS4_LOOKUP))
H A DReplyInterpreter.h72 status_t Access(uint32* supported, uint32* allowed);
H A DReplyInterpreter.cpp137 ReplyInterpreter::Access(uint32* supported, uint32* allowed) argument
150 if (allowed != NULL)
151 *allowed = allow;
H A DNFS4Inode.cpp91 NFS4Inode::Access(uint32* allowed) argument
93 ASSERT(allowed != NULL);
115 return reply.Access(NULL, allowed);
/haiku/src/preferences/notifications/
H A DNotificationsView.h30 const char* signature, bool allowed);
34 void SetAllowed(bool allowed);
H A DNotificationsView.cpp39 AppRow::AppRow(const char* name, const char* signature, bool allowed) argument
44 fAllowed(allowed)
53 AppRow::SetAllowed(bool allowed) argument
55 fAllowed = allowed;
166 bool allowed = fMuteAll->Value() == B_CONTROL_OFF; local
167 fSelectedRow->SetAllowed(allowed);
170 it->second->SetAllowed(allowed);
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dstring_utils.c24 const char *allowed = "abcdefghijklmnopqrstuvwxyz" \ local
36 if (strchr(allowed, *p))
/haiku/src/tools/fs_shell/
H A Ddriver_settings.cpp344 // empty settings are allowed
427 // "text" might be NULL here, but that's allowed
/haiku/src/system/libroot/os/
H A Ddriver_settings.cpp371 // empty settings are allowed
462 // "text" might be NULL here, but that's allowed
748 // we are allowed to call the driver settings pretty early in the boot process
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dsecurity.c437 * sparse attribute (ATTR_IS_SPARSE) is only allowed in sparse
1934 * Determine which access types to a file are allowed
3017 * Returns TRUE if allowed
3029 int allowed; local
3038 allowed = TRUE;
3068 allowed = TRUE;
3070 allowed = FALSE;
3074 return (allowed);
3444 * Returns 1 if access is allowed, including user is root or no
3448 * is not allowed
[all...]
H A Dattrib.c527 ntfs_log_perror("Compressed inode %lld not allowed"
3944 * the ntfs volume @vol is allowed to be non-resident. This information is
3948 * Return 0 if the attribute is allowed to be non-resident and -1 if not or an
3951 * EPERM - The attribute is not allowed to be non-resident.
3959 BOOL allowed; local
3973 allowed = FALSE;
3980 allowed = !(ad->flags & ATTR_DEF_RESIDENT);
3982 if (!allowed) {
3995 * Check whether the attribute of @type on the ntfs volume @vol is allowed to
4001 * Return 0 if the attribute is allowed t
[all...]

Completed in 146 milliseconds