/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/skiboot/libstb/ |
H A D | stb.c | 34 static bool secure_mode = false; variable 116 secure_mode = true; in stb_init() 119 secure_mode = dt_has_node_property(ibm_secureboot, "secure-enabled", in stb_init() 124 secure_mode = true; in stb_init() 125 } else if (secure_mode) { in stb_init() 146 if (!secure_mode && !trusted_mode) in stb_init() 149 if (secure_mode && !rom_driver) { in stb_init() 196 secure_mode = false; in stb_final() 263 if (secure_mode) in tb_measure() 293 if (!secure_mode) { in sb_verify()
|
/dports/emulators/qemu/qemu-6.2.0/roms/skiboot/libstb/ |
H A D | secureboot.c | 17 static bool secure_mode = false; variable 33 if (!secure_mode) in secureboot_enforce() 67 return secure_mode; in is_fw_secureboot() 100 secure_mode = true; in secureboot_init() 103 secure_mode = dt_has_node_property(node, "secure-enabled", NULL); in secureboot_init() 105 secure_mode ? "on" : "off"); in secureboot_init() 109 if (secure_mode) in secureboot_init()
|
/dports/devel/grpc/grpc-1.42.0/src/python/grpcio_tests/tests_py3_only/interop/ |
H A D | xds_interop_server.py | 94 def _configure_test_server(server: grpc.Server, port: int, secure_mode: bool, 99 if not secure_mode: 108 def _run(port: int, maintenance_port: int, secure_mode: bool, 113 _configure_test_server(server, port, secure_mode, server_id) 122 xds=secure_mode) 123 _configure_test_server(test_server, port, secure_mode, server_id) 173 if args.secure_mode and args.port == args.maintenance_port: 177 _run(args.port, args.maintenance_port, args.secure_mode, args.server_id)
|
/dports/emulators/qemu42/qemu-4.2.1/roms/skiboot/libstb/ |
H A D | secureboot.c | 30 static bool secure_mode = false; variable 46 if (!secure_mode) in secureboot_enforce() 108 secure_mode = true; in secureboot_init() 111 secure_mode = dt_has_node_property(node, "secure-enabled", NULL); in secureboot_init() 113 secure_mode ? "on" : "off"); in secureboot_init() 117 if (secure_mode) in secureboot_init()
|
/dports/emulators/qemu5/qemu-5.2.0/roms/skiboot/libstb/ |
H A D | secureboot.c | 30 static bool secure_mode = false; variable 46 if (!secure_mode) in secureboot_enforce() 108 secure_mode = true; in secureboot_init() 111 secure_mode = dt_has_node_property(node, "secure-enabled", NULL); in secureboot_init() 113 secure_mode ? "on" : "off"); in secureboot_init() 117 if (secure_mode) in secureboot_init()
|
/dports/emulators/qemu-utils/qemu-4.2.1/roms/skiboot/libstb/ |
H A D | secureboot.c | 30 static bool secure_mode = false; variable 46 if (!secure_mode) in secureboot_enforce() 108 secure_mode = true; in secureboot_init() 111 secure_mode = dt_has_node_property(node, "secure-enabled", NULL); in secureboot_init() 113 secure_mode ? "on" : "off"); in secureboot_init() 117 if (secure_mode) in secureboot_init()
|
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/skiboot/libstb/ |
H A D | secureboot.c | 30 static bool secure_mode = false; variable 46 if (!secure_mode) in secureboot_enforce() 108 secure_mode = true; in secureboot_init() 111 secure_mode = dt_has_node_property(node, "secure-enabled", NULL); in secureboot_init() 113 secure_mode ? "on" : "off"); in secureboot_init() 117 if (secure_mode) in secureboot_init()
|
/dports/emulators/qemu60/qemu-6.0.0/roms/skiboot/libstb/ |
H A D | secureboot.c | 30 static bool secure_mode = false; variable 46 if (!secure_mode) in secureboot_enforce() 108 secure_mode = true; in secureboot_init() 111 secure_mode = dt_has_node_property(node, "secure-enabled", NULL); in secureboot_init() 113 secure_mode ? "on" : "off"); in secureboot_init() 117 if (secure_mode) in secureboot_init()
|
/dports/devel/grpc/grpc-1.42.0/tools/run_tests/xds_k8s_test_driver/framework/test_app/ |
H A D | server_app.py | 51 secure_mode: Optional[bool] = False, 61 self.secure_mode = secure_mode 233 secure_mode=False, argument 241 if not secure_mode: 246 if secure_mode and maintenance_port == test_port: 254 if secure_mode and not self.enable_workload_identity: 261 maintenance_port, secure_mode, server_id, replica_count) 313 secure_mode=secure_mode) 348 secure_mode=secure_mode,
|
H A D | client_app.py | 291 secure_mode=False, argument 297 server_target, rpc, qps, metadata, secure_mode, print_response) 335 secure_mode=secure_mode,
|
/dports/emulators/dosbox/dosbox-0.74-3/include/ |
H A D | control.h | 64 bool secure_mode; //Sandbox mode variable 66 Config(CommandLine * cmd):cmdline(cmd),secure_mode(false){} in Config() 83 bool SecureMode() const { return secure_mode; } in SecureMode() 84 void SwitchToSecureMode() { secure_mode = true; }//can't be undone in SwitchToSecureMode()
|
/dports/mail/mailman3/mailman-3.3.1/src/mailman/mta/ |
H A D | connection.py | 61 secure_mode=SecureMode.INSECURE, argument 106 self.secure_mode = secure_mode 114 if self.secure_mode == SecureMode.INSECURE: 162 if self.secure_mode == SecureMode.IMPLICIT: 170 if self.secure_mode == SecureMode.STARTTLS:
|
/dports/devel/grpc/grpc-1.42.0/examples/python/xds/ |
H A D | server.py | 78 def _configure_greeter_server(server: grpc.Server, port: int, secure_mode: bool, 83 if not secure_mode: 96 secure_mode: bool) -> None: 101 _configure_greeter_server(server, port, secure_mode, hostname) 111 xds=secure_mode) 112 _configure_greeter_server(greeter_server, port, secure_mode, hostname)
|
/dports/games/libretro-dosbox/dosbox-libretro-aa71b67/include/ |
H A D | control.h | 63 bool secure_mode; //Sandbox mode variable 68 Config(CommandLine * cmd):cmdline(cmd),secure_mode(false) { in Config() 89 bool SecureMode() const { return secure_mode; } in SecureMode() 90 void SwitchToSecureMode() { secure_mode = true; }//can't be undone in SwitchToSecureMode()
|
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/apprise/plugins/ |
H A D | NotifyEmail.py | 397 from_addr=None, secure_mode=None, targets=None, cc=None, argument 461 self.secure_mode = self.default_secure_mode \ 462 if not isinstance(secure_mode, six.string_types) \ 463 else secure_mode.lower() 464 if self.secure_mode not in SECURE_MODES: 466 .format(secure_mode) 564 self.secure_mode = EMAIL_TEMPLATES[i][2]\ 565 .get('secure_mode', self.secure_mode) 731 if self.secure and self.secure_mode == SecureMailMode.SSL: 742 if self.secure and self.secure_mode == SecureMailMode.STARTTLS: [all …]
|
/dports/emulators/dosbox-staging/dosbox-staging-0.78.0/include/ |
H A D | control.h | 51 bool secure_mode = false; // Sandbox mode variable 98 bool SecureMode() const { return secure_mode; } in SecureMode() 99 void SwitchToSecureMode() { secure_mode = true; }//can't be undone in SwitchToSecureMode()
|
/dports/mail/mailman3/mailman-3.3.1/src/mailman/mta/tests/ |
H A D | test_connection.py | 139 secure_mode=SecureMode.IMPLICIT, verify_cert=False 151 secure_mode=SecureMode.STARTTLS, verify_cert=False 161 secure_mode=SecureMode.STARTTLS, verify_cert=False
|
/dports/devel/grpc/grpc-1.42.0/test/cpp/interop/ |
H A D | xds_interop_server.cc | 51 ABSL_FLAG(bool, secure_mode, false, 113 void RunServer(bool secure_mode, const int port, const int maintenance_port, in RunServer() argument 131 if (secure_mode) { in RunServer()
|
/dports/devel/grpc/grpc-1.42.0/tools/run_tests/xds_k8s_test_driver/kubernetes-manifests/ |
H A D | client-secure.deployment.yaml | 31 - "--secure_mode=${secure_mode}"
|
H A D | server-secure.deployment.yaml | 31 - "--secure_mode=${secure_mode}"
|
/dports/databases/vfront/vfront-0.96c/inc/ |
H A D | vmsql.mysqlold.php | 83 …* @param bool $secure_mode Imposta il secure mode per le query, invalidando tutte le query con com… 86 public function query_try($sql,$secure_mode=true){ argument 90 if($secure_mode){
|
/dports/net/miniupnpd/miniupnpd-2.1.20200510/ |
H A D | miniupnpd.conf | 113 secure_mode=no
|
/dports/emulators/ppsspp/ppsspp-1.12.3/ext/miniupnp/miniupnpd/ |
H A D | miniupnpd.conf | 113 secure_mode=no
|
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/ext/miniupnp/miniupnpd/ |
H A D | miniupnpd.conf | 113 secure_mode=no
|
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/ext/miniupnp/miniupnpd/ |
H A D | miniupnpd.conf | 113 secure_mode=no
|