Home
last modified time | relevance | path

Searched refs:pass (Results 1 – 25 of 530) sorted by relevance

12345678910>>...22

/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/freeradius/files/
H A D0013-raddb-certs-Makefile-fix-the-occasional-verification.patch11 openssl pkcs12 -in server.p12 -out server.pem -passin pass:'whatever' -passout pass:'whatever'
51 -passin pass:$(PASSWORD_CA) -passout pass:$(PASSWORD_CA)
78 …-in server.crt -inkey server.key -out server.p12 -passin pass:$(PASSWORD_SERVER) -passout pass:$(…
79 …-in server.crt -inkey server.key -out server.p12 -passin pass:$(PASSWORD_SERVER) -passout pass:$(…
83 - $(OPENSSL) pkcs12 -in server.p12 -out server.pem -passin pass:$(PASSWORD_SERVER) -passout pass:$(…
84 … $(OPENSSL) pkcs12 -in server.p12 -out server.pem -passin pass:$(PASSWORD_SERVER) -passout pass:$(…
100 …-in client.crt -inkey client.key -out client.p12 -passin pass:$(PASSWORD_CLIENT) -passout pass:$(…
101 …-in client.crt -inkey client.key -out client.p12 -passin pass:$(PASSWORD_CLIENT) -passout pass:$(…
106 - $(OPENSSL) pkcs12 -in client.p12 -out client.pem -passin pass:$(PASSWORD_CLIENT) -passout pass:$(…
107 … $(OPENSSL) pkcs12 -in client.p12 -out client.pem -passin pass:$(PASSWORD_CLIENT) -passout pass:$(…
[all …]
/openbmc/bmcweb/include/
H A Dcredential_pipe.hpp44 explicit_bzero(pass.data(), pass.capacity()); in ~CredentialsPipe()
57 pass = std::move(password); in asyncWrite()
61 {{user.data(), user.size() + 1}, {pass.data(), pass.size() + 1}}}; in asyncWrite()
71 std::string pass; member in CredentialsPipe
/openbmc/estoraged/src/test/erase/
H A Dzero_test.cpp36 Zero pass(testFileName); in TEST() local
39 EXPECT_NO_THROW(pass.writeZero(size, write)); in TEST()
42 EXPECT_NO_THROW(pass.verifyZero(size, read)); in TEST()
62 Zero pass(testFileName); in TEST() local
63 EXPECT_NO_THROW(pass.writeZero(size, write)); in TEST()
66 EXPECT_NO_THROW(pass.verifyZero(size, read)); in TEST()
84 Zero pass(testFileName); in TEST() local
85 EXPECT_NO_THROW(pass.writeZero(size - sizeof(dummyValue), readWrite)); in TEST()
92 EXPECT_THROW(pass.verifyZero(size, readWrite), InternalFailure); in TEST()
105 Zero pass(testFileName); in TEST() local
[all …]
H A Dpattern_test.cpp41 Pattern pass(testFileName); in TEST() local
42 EXPECT_NO_THROW(pass.writePattern(size, writeFd)); in TEST()
47 EXPECT_NO_THROW(pass.verifyPattern(size, readFd)); in TEST()
66 Pattern pass(testFileName); in TEST() local
67 EXPECT_NO_THROW(pass.writePattern(size, writeFd)); in TEST()
71 EXPECT_NO_THROW(pass.verifyPattern(size, readFd)); in TEST()
80 Pattern pass(testFileName); in TEST() local
91 EXPECT_NO_THROW(pass.writePattern(size - sizeof(dummyValue), writeFd)); in TEST()
96 EXPECT_THROW(pass.verifyPattern(size, readFd), InternalFailure); in TEST()
107 Pattern pass(testFileName); in TEST() local
[all …]
/openbmc/qemu/tests/rocker/
H A Dall3 if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
7 if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
11 if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
15 if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
19 if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
/openbmc/u-boot/arch/arm/lib/
H A Dvectors_m.S13 mov r0, sp @ pass auto-saved registers as argument
18 mov r0, sp @ pass auto-saved registers as argument
23 mov r0, sp @ pass auto-saved registers as argument
28 mov r0, sp @ pass auto-saved registers as argument
33 mov r0, sp @ pass auto-saved registers as argument
/openbmc/qemu/tests/multiboot/
H A Drun_test.sh47 pass=0
50 pass=0
81 pass=1
87 pass=0
90 if [ $pass == 1 ]; then
/openbmc/u-boot/drivers/net/
H A Dmcfmii.c137 int phyaddr, pass; in mii_discover_phy() local
145 for (pass = 1; pass <= MAX_PHY_PASSES && phyaddr < 0; ++pass) { in mii_discover_phy()
146 if (pass > 1) { in mii_discover_phy()
159 printf("PHY type 0x%x pass %d type\n", phytype, pass); in mii_discover_phy()
169 printf("PHY @ 0x%x pass %d\n", phyno, pass); in mii_discover_phy()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/lxdm/lxdm/
H A D0004-lxdm.c-add-function-to-change-password-with-pam.patch32 @@ -759,6 +763,69 @@ int lxdm_auth_user(int type,char *user, char *pass, struct passwd **ppw)
63 +static int lxdm_change_passwd_pam(const char *service, const char *user, const char *pass)
77 + new_passwd = pass;
90 +int lxdm_change_passwd(const char *user, const char *pass)
93 + return lxdm_change_passwd_pam("lxdm", user, pass);
117 int lxdm_auth_user(int type,char *user,char *pass,struct passwd **ppw);
118 +int lxdm_change_passwd(const char *user, const char *pass);
H A D0005-ui.c-handle-password-expire-and-update-new-password.patch26 if(pass!=NULL)
34 + char *pass = greeter_param(str, "newpass");
38 + int ret = lxdm_change_passwd(user, pass);
43 + ret = lxdm_auth_user(AUTH_TYPE_NORMAL, user, pass, &pw);
H A D0009-greeter.c-disallow-empty-new-password.patch46 - } else if (!strcmp(pass, g_base64_encode((guchar*)new_pass, strlen(new_pass) + 1))) {
47 + } else if (pass && !strcmp(pass, g_base64_encode((guchar*)new_pass, strlen(new_pass) + 1))) {
/openbmc/qemu/hw/riscv/
H A Driscv-iommu.c267 } pass; in riscv_iommu_spa_fetch() local
305 for (pass = 0; pass < 2; pass++) { in riscv_iommu_spa_fetch()
308 sc[pass].step = 0; in riscv_iommu_spa_fetch()
309 if (pass ? (s->fctl & RISCV_IOMMU_FCTL_GXL) : in riscv_iommu_spa_fetch()
312 switch (pass ? gatp : satp) { in riscv_iommu_spa_fetch()
314 sc[pass].levels = 0; in riscv_iommu_spa_fetch()
315 sc[pass].ptidxbits = 0; in riscv_iommu_spa_fetch()
316 sc[pass].ptesize = 0; in riscv_iommu_spa_fetch()
319 sv_mode = pass ? RISCV_IOMMU_CAP_SV32X4 : RISCV_IOMMU_CAP_SV32; in riscv_iommu_spa_fetch()
323 sc[pass].levels = 2; in riscv_iommu_spa_fetch()
[all …]
/openbmc/qemu/tests/tcg/hexagon/
H A Dcrt.S4 .globl pass
5 pass: label
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/tcltk/tk8/
H A Dtkprivate.diff11 # String to pass to linker to pick up the Tk library from its
16 # String to pass to linker to pick up the Tk library from its
29 # String to pass to linker to pick up the Tk stub library from its
34 # String to pass to linker to pick up the Tk stub library from its
/openbmc/openbmc/poky/meta/recipes-core/initscripts/initscripts-1.0/
H A Dcheckroot.sh32 while read fs mnt type opts dump pass junk <&9
52 test "$pass" = 0 -o "$pass" = "" && rootcheck=no
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/
H A Dqunit-1.18.0.css1pass,#qunit-tests li.fail,#qunit-tests li.skipped{display:list-item;}#qunit-tests.hidepass li.runn…
/openbmc/qemu/tests/tcg/riscv64/
H A Dtest-noc.S19 pass: label
30 .dword pass
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-yappi/
H A D0001-test_functionality-convert-line-endings-to-Unix.patch47 - pass
85 - pass
88 - pass
122 - pass
199 - pass
202 - pass
245 - pass
304 - pass
315 - pass
322 - pass
[all …]
/openbmc/qemu/tests/tcg/aarch64/
H A Dmte-6.c3 void pass(int sig, siginfo_t *info, void *uc) in pass() function
36 sa.sa_sigaction = pass; in main()
H A Dmte-3.c10 void pass(int sig, siginfo_t *info, void *uc) in pass() function
38 sa.sa_sigaction = pass; in main()
H A Dmte-2.c10 void pass(int sig, siginfo_t *info, void *uc) in pass() function
38 sa.sa_sigaction = pass; in main()
H A Dmte-5.c10 void pass(int sig, siginfo_t *info, void *uc) in pass() function
33 sa.sa_sigaction = pass; in main()
/openbmc/qemu/docs/system/devices/
H A Dusb-u2f.rst12 QEMU supports both pass-through of a host U2F key device to a VM,
23 In addition, the dedicated pass-through allows you to share a single
25 simple host device assignment pass-through.
68 It is the default if you do not pass any other options to the device.
73 You can pass the device the path of a setup directory on the host
84 You can also manually pass the device the paths to each of these files,
/openbmc/u-boot/arch/x86/lib/
H A Dcrt0_ia32_efi.S28 pushl %ebx # pass _DYNAMIC as second argument
29 pushl %eax # pass ldbase as first argument
/openbmc/phosphor-pid-control/sensors/
H A Dmanager.hpp23 SensorManager(sdbusplus::bus_t& pass, sdbusplus::bus_t& host) : in SensorManager() argument
24 _passiveListeningBus(pass), _hostSensorBus(host) in SensorManager()

12345678910>>...22