Home
last modified time | relevance | path

Searched refs:success (Results 1 – 25 of 1324) sorted by relevance

12345678910>>...53

/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.cpp89 bool success = false; in EvaluateInstruction() local
97 old_pc = ReadPC(&success); in EvaluateInstruction()
98 if (!success) in EvaluateInstruction()
107 lldb::addr_t new_pc = ReadPC(&success); in EvaluateInstruction()
108 if (!success) in EvaluateInstruction()
118 bool success = false; in ReadInstruction() local
119 m_addr = ReadPC(&success); in ReadInstruction()
120 if (!success) { in ReadInstruction()
128 uint32_t inst = (uint32_t)ReadMemoryUnsigned(ctx, m_addr, 4, 0, &success); in ReadInstruction()
134 lldb::addr_t EmulateInstructionLoongArch::ReadPC(bool *success) { in ReadPC() argument
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DARMUtils.h92 uint32_t &carry_out, bool *success) { in LSL_C() argument
94 *success = false; in LSL_C()
97 *success = true; in LSL_C()
103 bool *success) { in LSL() argument
104 *success = true; in LSL()
108 uint32_t result = LSL_C(value, amount, dont_care, success); in LSL()
109 if (*success) in LSL()
116 uint32_t &carry_out, bool *success) { in LSR_C() argument
118 *success = false; in LSR_C()
121 *success = true; in LSR_C()
[all …]
/freebsd/crypto/openssl/test/helpers/
H A Dpkcs12.c110 pb->success = 1; in new_pkcs12_builder()
116 int result = pb->success; in end_pkcs12_builder()
131 if (!pb->success) in end_pkcs12()
139 if (!pb->success) in end_pkcs12_with_mac()
151 if (!pb->success) in generate_p12()
156 pb->success = 0; in generate_p12()
164 pb->success = 0; in generate_p12()
177 pb->success = 0; in generate_p12()
281 if (pb->success && pb->bags != NULL) { in end_contentinfo()
283 pb->success = 0; in end_contentinfo()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp1035 bool success = false; in ReadInstruction() local
1037 LLDB_INVALID_ADDRESS, &success); in ReadInstruction()
1038 if (success) { in ReadInstruction()
1043 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success), in ReadInstruction()
1046 if (!success) in ReadInstruction()
1048 return success; in ReadInstruction()
1052 bool success = false; in EvaluateInstruction() local
1097 ReadRegisterUnsigned(eRegisterKindDWARF, dwarf_pc_mips, 0, &success); in EvaluateInstruction()
1098 if (!success) in EvaluateInstruction()
1103 success = (this->*opcode_data->callback)(mc_insn); in EvaluateInstruction()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp932 bool success = false; in ReadInstruction() local
934 LLDB_INVALID_ADDRESS, &success); in ReadInstruction()
935 if (success) { in ReadInstruction()
940 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success), in ReadInstruction()
943 if (!success) in ReadInstruction()
945 return success; in ReadInstruction()
949 bool success = false; in EvaluateInstruction() local
986 ReadRegisterUnsigned(eRegisterKindDWARF, dwarf_pc_mips64, 0, &success); in EvaluateInstruction()
987 if (!success) in EvaluateInstruction()
992 success = (this->*opcode_data->callback)(mc_insn); in EvaluateInstruction()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.cpp101 bool success = false; in ReadInstruction() local
103 LLDB_INVALID_ADDRESS, &success); in ReadInstruction()
104 if (success) { in ReadInstruction()
108 m_opcode.SetOpcode32(ReadMemoryUnsigned(ctx, m_addr, 4, 0, &success), in ReadInstruction()
111 if (!success) in ReadInstruction()
113 return success; in ReadInstruction()
170 bool success = false; in EvaluateInstruction() local
175 ReadRegisterUnsigned(eRegisterKindLLDB, gpr_pc_ppc64le, 0, &success); in EvaluateInstruction()
176 if (!success) in EvaluateInstruction()
181 success = (this->*opcode_data->callback)(opcode); in EvaluateInstruction()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp773 bool success; in WriteBits32Unknown() local
775 ReadRegisterUnsigned(eRegisterKindDWARF, dwarf_r0 + n, 0, &success); in WriteBits32Unknown()
777 if (!success) in WriteBits32Unknown()
920 bool success = false; in EmulatePUSH() local
923 const addr_t sp = ReadCoreReg(SP_REG, &success); in EmulatePUSH()
924 if (!success) in EmulatePUSH()
981 uint32_t reg_value = ReadCoreReg(i, &success); in EmulatePUSH()
982 if (!success) in EmulatePUSH()
994 const uint32_t pc = ReadCoreReg(PC_REG, &success); in EmulatePUSH()
995 if (!success) in EmulatePUSH()
[all …]
H A DEmulationStateARM.cpp50 bool &success) { in ReadPseudoRegisterValue() argument
52 success = true; in ReadPseudoRegisterValue()
67 success = false; in ReadPseudoRegisterValue()
92 bool &success) { in ReadFromPseudoAddress() argument
96 success = true; in ReadFromPseudoAddress()
101 success = false; in ReadFromPseudoAddress()
113 bool success = true; in ReadPseudoMemory() local
116 uint32_t value = pseudo_state->ReadFromPseudoAddress(addr, success); in ReadPseudoMemory()
117 if (!success) in ReadPseudoMemory()
124 uint32_t value1 = pseudo_state->ReadFromPseudoAddress(addr, success); in ReadPseudoMemory()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DRecordName.cpp56 return Error::success(); in visitTypeBegin()
63 return Error::success(); in visitTypeBegin()
66 Error TypeNameComputer::visitTypeEnd(CVType &CVR) { return Error::success(); } in visitTypeEnd()
71 return Error::success(); in visitKnownRecord()
77 return Error::success(); in visitKnownRecord()
93 return Error::success(); in visitKnownRecord()
107 return Error::success(); in visitKnownRecord()
112 return Error::success(); in visitKnownRecord()
117 return Error::success(); in visitKnownRecord()
122 return Error::success(); in visitKnownRecord()
[all...]
H A DSymbolRecordMapping.cpp23 return Error::success(); in operator ()()
33 return Error::success(); in mapLocalVariableAddrRange()
38 return Error::success(); in visitSymbolBegin()
44 return Error::success(); in visitSymbolEnd()
56 return Error::success(); in visitKnownRecord()
71 return Error::success(); in visitKnownRecord()
84 return Error::success(); in visitKnownRecord()
99 return Error::success(); in visitKnownRecord()
111 return Error::success(); in visitKnownRecord()
121 return Error::success(); in visitKnownRecord()
[all...]
H A DTypeDumpVisitor.cpp182 return Error::success(); in visitTypeBegin()
191 return Error::success(); in visitTypeEnd()
199 return Error::success(); in visitMemberBegin()
208 return Error::success(); in visitMemberEnd()
216 return Error::success(); in visitKnownRecord()
222 return Error::success(); in visitKnownRecord()
233 return Error::success(); in visitKnownRecord()
244 return Error::success(); in visitKnownRecord()
258 return Error::success(); in visitKnownRecord()
270 return Error::success(); in visitKnownRecord()
[all …]
H A DSymbolDumper.cpp106 return Error::success(); in visitSymbolBegin()
115 return Error::success(); in visitSymbolEnd()
130 return Error::success(); in visitKnownRecord()
142 return Error::success(); in visitKnownRecord()
153 return Error::success(); in visitKnownRecord()
166 return Error::success(); in visitKnownRecord()
178 return Error::success(); in visitKnownRecord()
186 return Error::success(); in visitKnownRecord()
192 return Error::success(); in visitKnownRecord()
207 return Error::success(); in visitKnownRecord()
[all...]
H A DTypeRecordMapping.cpp161 return Error::success(); in operator ()()
229 return Error::success(); in mapNameAndUniqueName()
254 return Error::success(); in visitTypeBegin()
271 return Error::success(); in visitTypeEnd()
297 return Error::success(); in visitMemberBegin()
311 return Error::success(); in visitMemberEnd()
320 return Error::success(); in visitKnownRecord()
336 return Error::success(); in visitKnownRecord()
355 return Error::success(); in visitKnownRecord()
365 return Error::success(); in visitKnownRecord()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/XRay/
H A DBlockIndexer.cpp18 Error BlockIndexer::visit(BufferExtents &) { return Error::success(); } in visit()
23 return Error::success(); in visit()
28 return Error::success(); in visit()
33 return Error::success(); in visit()
38 return Error::success(); in visit()
43 return Error::success(); in visit()
48 return Error::success(); in visit()
53 return Error::success(); in visit()
59 return Error::success(); in visit()
69 return Error::success(); in visit()
[all …]
H A DRecordPrinter.cpp17 return Error::success(); in visit()
23 return Error::success(); in visit()
28 return Error::success(); in visit()
33 return Error::success(); in visit()
41 return Error::success(); in visit()
48 return Error::success(); in visit()
56 return Error::success(); in visit()
61 return Error::success(); in visit()
66 return Error::success(); in visit()
71 return Error::success(); in visit()
[all …]
H A DFDRTraceExpander.cpp23 return Error::success(); in visit()
26 Error TraceExpander::visit(WallclockRecord &) { return Error::success(); } in visit()
31 return Error::success(); in visit()
36 return Error::success(); in visit()
50 return Error::success(); in visit()
65 return Error::success(); in visit()
81 return Error::success(); in visit()
87 return Error::success(); in visit()
92 return Error::success(); in visit()
101 return Error::success(); in visit()
[all …]
/freebsd/crypto/openssl/test/ssl-tests/
H A D03-custom_verify.cnf5 test-0 = 0-verify-success
9 test-4 = 4-noverify-success
13 test-8 = 8-verify-custom-success-no-root
17 [0-verify-success]
18 ssl_conf = 0-verify-success-ssl
20 [0-verify-success-ssl]
21 server = 0-verify-success-server
22 client = 0-verify-success-client
24 [0-verify-success-server]
29 [0-verify-success-client]
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp260 return Error::success(); in visitTypeBegin()
269 return Error::success(); in visitTypeEnd()
274 return Error::success(); in visitMemberBegin()
282 return Error::success(); in visitMemberEnd()
296 return Error::success(); in visitKnownRecord()
302 return Error::success(); in visitKnownRecord()
309 return Error::success(); in visitKnownRecord()
317 return Error::success(); in visitKnownRecord()
324 return Error::success(); in visitKnownRecord()
332 return Error::success(); in visitKnownRecord()
[all …]
H A DYAMLOutputStyle.cpp77 return Error::success(); in dump()
83 return Error::success(); in dumpFileHeaders()
100 return Error::success(); in dumpFileHeaders()
108 return Error::success(); in dumpStringTable()
124 return Error::success(); in dumpStringTable()
129 return Error::success(); in dumpStreamMetadata()
134 return Error::success(); in dumpStreamMetadata()
139 return Error::success(); in dumpStreamDirectory()
149 return Error::success(); in dumpStreamDirectory()
154 return Error::success(); in dumpPDBStream()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeVisitorCallbacks.h23 virtual Error visitUnknownType(CVType &Record) { return Error::success(); } in visitUnknownType()
31 virtual Error visitTypeBegin(CVType &Record) { return Error::success(); } in visitTypeBegin()
33 return Error::success(); in visitTypeBegin()
35 virtual Error visitTypeEnd(CVType &Record) { return Error::success(); } in visitTypeEnd()
38 return Error::success(); in visitUnknownMember()
42 return Error::success(); in visitMemberBegin()
46 return Error::success(); in visitMemberEnd()
51 return Error::success(); \
55 return Error::success(); \
H A DTypeVisitorCallbackPipeline.h30 return Error::success(); in visitUnknownType()
38 return Error::success(); in visitUnknownMember()
46 return Error::success(); in visitTypeBegin()
54 return Error::success(); in visitTypeBegin()
62 return Error::success(); in visitTypeEnd()
70 return Error::success(); in visitMemberBegin()
78 return Error::success(); in visitMemberEnd()
104 return Error::success(); in visitKnownRecordImpl()
113 return Error::success(); in visitKnownMemberImpl()
/freebsd/contrib/atf/atf-c++/
H A Dcheck.cpp106 bool success; in build_c_o() local
109 optargs.exec_argv(), &success); in build_c_o()
113 return success; in build_c_o()
120 bool success; in build_cpp() local
123 optargs.exec_argv(), &success); in build_cpp()
127 return success; in build_cpp()
134 bool success; in build_cxx_o() local
137 optargs.exec_argv(), &success); in build_cxx_o()
141 return success; in build_cxx_o()
/freebsd/crypto/openssl/fuzz/
H A Dbndiv.c48 int success = 0; in FuzzerTestOneInput() local
79 success = 1; in FuzzerTestOneInput()
85 success = BN_is_zero(b3) && BN_is_zero(b4); in FuzzerTestOneInput()
87 success = (BN_is_negative(b3) != BN_is_negative(b2) || BN_is_zero(b3)) in FuzzerTestOneInput()
90 success = (BN_is_negative(b3) == BN_is_negative(b2) || BN_is_zero(b3)) in FuzzerTestOneInput()
95 success = success && BN_cmp(b5, b1) == 0; in FuzzerTestOneInput()
96 if (!success) { in FuzzerTestOneInput()
117 OPENSSL_assert(success); in FuzzerTestOneInput()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp373 bool success = false; in ReadInstruction() local
375 LLDB_INVALID_ADDRESS, &success); in ReadInstruction()
376 if (success) { in ReadInstruction()
381 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success), in ReadInstruction()
384 if (!success) in ReadInstruction()
386 return success; in ReadInstruction()
400 bool success = false; in EvaluateInstruction() local
404 if (!success && !m_ignore_conditions) in EvaluateInstruction()
410 ReadRegisterUnsigned(eRegisterKindLLDB, gpr_pc_arm64, 0, &success); in EvaluateInstruction()
411 if (!success) in EvaluateInstruction()
[all …]
/freebsd/usr.sbin/rpcbind/
H A Drpcb_stat.c83 rpcbs_set(rpcvers_t rtype, bool_t success) in rpcbs_set() argument
85 if ((rtype >= RPCBVERS_STAT) || (success == FALSE)) in rpcbs_set()
91 rpcbs_unset(rpcvers_t rtype, bool_t success) in rpcbs_unset() argument
93 if ((rtype >= RPCBVERS_STAT) || (success == FALSE)) in rpcbs_unset()
116 al->success++; in rpcbs_getaddr()
133 al->success = 0; in rpcbs_getaddr()
136 al->success = 1; in rpcbs_getaddr()
163 rl->success++; in rpcbs_rmtcall()
184 rl->success = 0; in rpcbs_rmtcall()
187 rl->success = 1; in rpcbs_rmtcall()

12345678910>>...53