Symbol: allowed
crypto/openssh/auth-options.c
144
if ((r = sshbuf_get_cstring(data, &allowed,
crypto/openssh/auth-options.c
153
free(allowed);
crypto/openssh/auth-options.c
157
if (addr_match_cidr_list(NULL, allowed) == -1) {
crypto/openssh/auth-options.c
162
opts->required_from_host_cert = allowed;
crypto/openssh/auth-options.c
80
char *command, *allowed;
crypto/openssh/monitor.c
1173
int r, allowed = 0;
crypto/openssh/monitor.c
1195
allowed = user_key_allowed(ssh, authctxt->pw, key,
crypto/openssh/monitor.c
1207
allowed = hostbased_key_allowed(ssh, authctxt->pw,
crypto/openssh/monitor.c
1222
allowed ? "allowed" : "not allowed");
crypto/openssh/monitor.c
1229
if (allowed) {
crypto/openssh/monitor.c
1246
if ((r = sshbuf_put_u32(m, allowed)) != 0)
crypto/openssh/monitor.c
1252
if (!allowed)
crypto/openssh/monitor.c
746
int r, allowed = 0;
crypto/openssh/monitor.c
769
allowed = 1;
crypto/openssh/monitor.c
813
debug3_f("sending MONITOR_ANS_PWNAM: %d", allowed);
crypto/openssh/monitor_wrap.c
513
int r, allowed = 0;
crypto/openssh/monitor_wrap.c
536
if ((r = sshbuf_get_u32(m, &allowed)) != 0)
crypto/openssh/monitor_wrap.c
538
if (allowed && type == MM_USERKEY &&
crypto/openssh/monitor_wrap.c
549
return allowed;
crypto/openssh/readpass.c
204
int allowed = 0;
crypto/openssh/readpass.c
219
allowed = 1;
crypto/openssh/readpass.c
223
return (allowed);
crypto/openssh/sshconnect2.c
1154
char *allowed, *oallowed, *cp, *tmp, *alg = NULL;
crypto/openssh/sshconnect2.c
1184
oallowed = allowed = xstrdup(options.pubkey_accepted_algos);
crypto/openssh/sshconnect2.c
1185
while ((cp = strsep(&allowed, ",")) != NULL) {
crypto/openssh/sshkey.c
2028
sshkey_check_cert_sigtype(const struct sshkey *key, const char *allowed)
crypto/openssh/sshkey.c
2030
if (key == NULL || allowed == NULL)
crypto/openssh/sshkey.c
2036
if (match_pattern_list(key->cert->signature_type, allowed, 0) != 1)
games/gomoku/bdisp.c
254
get_key(const char *allowed)
games/gomoku/bdisp.c
260
if (allowed != NULL &&
games/gomoku/bdisp.c
261
ch != '\0' && strchr(allowed, ch) == NULL) {
sys/dev/drm/amd/powerplay/hwmgr/vega12_hwmgr.c
351
data->smu_features[i].allowed =
sys/dev/drm/amd/powerplay/hwmgr/vega12_hwmgr.c
764
if (data->smu_features[i].allowed)
sys/dev/drm/amd/powerplay/hwmgr/vega12_hwmgr.h
84
bool allowed;
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.c
359
data->smu_features[i].allowed =
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.c
778
if (data->smu_features[i].allowed)
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.c
833
if (data->smu_features[i].allowed && !enabled)
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.c
835
else if (!data->smu_features[i].allowed && enabled)
sys/dev/drm/amd/powerplay/hwmgr/vega20_hwmgr.h
93
bool allowed;
sys/dev/drm/radeon/radeon_object.c
550
u32 allowed = lobj->allowed_domains;
sys/dev/drm/radeon/radeon_object.c
562
if ((allowed & current_domain) != 0 &&
sys/dev/drm/radeon/radeon_object.c
572
radeon_uvd_force_into_uvd_segment(bo, allowed);
usr.sbin/cron/cron/cron.h
227
allowed(char *),
usr.sbin/cron/crontab/crontab.c
100
if (!allowed(User)) {
usr.sbin/ppp/systems.c
252
int f, mode, allowed;
usr.sbin/ppp/systems.c
254
allowed = 0;
usr.sbin/ppp/systems.c
260
allowed |= mode;
usr.sbin/ppp/systems.c
263
modeok = modereq & allowed ? 1 : 0;