| /freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
| H A D | xray_allocator.h | 177 bool Owned; member 230 Owned(true), in Allocator() 238 Owned(false), in Allocator() 255 Owned = O.Owned; in Allocator() 256 O.Owned = false; in Allocator() 272 Owned = O.Owned; 273 O.Owned = false; 280 if (Owned && BackingStore != nullptr) { in ~Allocator()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | RetainPtrCtorAdoptChecker.cpp | 180 if (Result == IsOwnedResult::Owned || Result == IsOwnedResult::Skip) { in checkAdoptCall() 332 if (Result == IsOwnedResult::Owned) in visitConstructExpr() 480 enum class IsOwnedResult { Unknown, Skip, Owned, NotOwned }; enumerator 513 return IsOwnedResult::Owned; in isOwned() 538 return IsOwnedResult::Owned; in isOwned() 559 return IsOwnedResult::Owned; in isOwned() 573 return IsOwnedResult::Owned; in isOwned()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | JSON.h | 589 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { in ObjectKey() 590 if (LLVM_UNLIKELY(!isUTF8(*Owned))) { in ObjectKey() 592 *Owned = fixUTF8(std::move(*Owned)); in ObjectKey() 594 Data = *Owned; in ObjectKey() 609 if (C.Owned) { 610 Owned.reset(new std::string(*C.Owned)); 611 Data = *Owned; 625 std::unique_ptr<std::string> Owned;
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.h | 53 Owned = 0, // Owning reference. enumerator 152 return getKind() == Owned; in isOwned() 172 return RefVal(Owned, o, /*Count=*/1, 0, t, IvarAccessHistory::None); in makeOwned()
|
| H A D | RetainCountChecker.cpp | 52 case Owned: { in print() 750 case RefVal::Owned: in updateSymbol() 763 if (V.getKind() == RefVal::Owned) { in updateSymbol() 786 case RefVal::Owned: in updateSymbol() 801 case RefVal::Owned: in updateSymbol() 997 case RefVal::Owned: { in processReturn()
|
| H A D | RetainCountDiagnostics.cpp | 117 case RefVal::Owned: in shouldGenerateNote()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonDataObjects.h | 105 Owned // We have ownership of the incoming PyObject. We should enumerator 123 T thing(PyRefType::Owned, obj); in Take() 417 else if (type == PyRefType::Owned) 770 PythonObject(PyRefType::Owned, static_cast<PyObject *>(GetValue()));
|
| H A D | PythonDataObjects.cpp | 188 return PythonString(PyRefType::Owned, repr); in Repr() 197 return PythonString(PyRefType::Owned, str); in Str() 259 return PythonObject(PyRefType::Owned, in GetAttributeValue() 686 return PythonList(PyRefType::Owned, PyDict_Keys(m_py_obj)); in GetKeys() 856 return PythonObject(PyRefType::Owned, PyObject_CallObject(m_py_obj, nullptr)); in operator ()() 862 return PythonObject(PyRefType::Owned, in operator ()() 869 return PythonObject(PyRefType::Owned, in operator ()()
|
| H A D | ScriptInterpreterPython.cpp | 864 PyRefType::Owned, in ExecuteOneLine() 868 PyRefType::Owned, in ExecuteOneLine() 1488 PythonObject py_return(PyRefType::Owned, in GetRecognizedArguments() 2497 PyRefType::Owned, static_cast<PyObject *>(module_pyobj))); in LoadScriptingModule() 2838 PythonObject pmeth(PyRefType::Owned, in GetFlagsForCommandObject() 2888 PythonObject pmeth(PyRefType::Owned, in GetOptionsForCommandObject() 2936 PythonObject pmeth(PyRefType::Owned, in GetArgumentsForCommandObject() 2982 PythonObject pmeth(PyRefType::Owned, in OptionParsingStartedForCommandObject() 3030 PythonObject pmeth(PyRefType::Owned, in SetOptionValueForCommandObject()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | TypeErasedDataflowAnalysis.cpp | 176 std::deque<TypeErasedDataflowAnalysisState> Owned; member in clang::dataflow::__anon57fc8b7a0211::JoinedStateBuilder 191 Owned.push_back(std::move(State)); in addOwned() 192 All.push_back(&Owned.back()); in addOwned()
|
| /freebsd/crypto/openssl/include/openssl/ |
| H A D | srp.h.in | 57 /* Owned by us. */ 64 /* Owned by us. */
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | GlobalModuleIndex.cpp | 853 bool Owned; in writeIndex() local 854 if (llvm::Error Err = Lock.tryLock().moveInto(Owned)) { in writeIndex() 858 if (!Owned) { in writeIndex()
|
| /freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | MicrosoftDemangleNodes.cpp | 124 std::string Owned(SV.begin(), SV.end()); in toString() local 126 return Owned; in toString()
|
| H A D | MicrosoftDemangle.cpp | 1025 std::string_view Owned = copyString(OB); in memorizeIdentifier() local 1026 memorizeString(Owned); in memorizeIdentifier()
|
| /freebsd/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python-swigsafecast.swig | 5 return {PyRefType::Owned, SWIG_NewPointerObj(obj, info, SWIG_POINTER_OWN)};
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | DeclSpec.cpp | 822 Decl *Rep, bool Owned, in SetTypeSpecType() argument 824 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned, Policy); in SetTypeSpecType() 831 Decl *Rep, bool Owned, in SetTypeSpecType() argument 847 TypeSpecOwned = Owned && Rep != nullptr; in SetTypeSpecType()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | File.h | 381 Owned = true, enumerator
|
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | ScriptInterpreter.cpp | 244 std::make_shared<StreamFile>(outfile_handle, NativeFile::Owned), in ScriptInterpreterIORedirect()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUSplitModule.cpp | 1563 bool Owned; in run() local 1564 if (Error Err = Lock.tryLock().moveInto(Owned)) { in run() 1569 } else if (!Owned) { in run()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | CompilerInstance.cpp | 1503 bool Owned; in compileModuleAndReadASTBehindLock() local 1504 if (llvm::Error Err = Lock->tryLock().moveInto(Owned)) { in compileModuleAndReadASTBehindLock() 1513 if (Owned) { in compileModuleAndReadASTBehindLock()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 745 unsigned &DiagID, Decl *Rep, bool Owned, 753 unsigned &DiagID, Decl *Rep, bool Owned,
|
| /freebsd/crypto/openssl/doc/designs/quic-design/ |
| H A D | glossary.md | 293 Owned by the QTX.
|
| /freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | sc7280.dtsi | 2537 status = "reserved"; /* Owned by ADSP firmware */ 2686 status = "reserved"; /* Owned by ADSP firmware */ 2697 status = "reserved"; /* Owned by ADSP firmware */ 2793 status = "reserved"; /* Owned by ADSP firmware */ 5105 status = "reserved"; /* Owned by firmware */ 6230 status = "reserved"; /* Owned by Gunyah hyp */
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseDeclCXX.cpp | 1986 bool Owned = false; in ParseClassSpecifier() local 2143 DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseClassSpecifier() 2208 DiagID, TagOrTempResult.get(), Owned, Policy); in ParseClassSpecifier()
|
| H A D | ParseDecl.cpp | 5270 bool Owned = false; in ParseEnumSpecifier() local 5277 TParams, Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier() 5293 PrevSpec, DiagID, TagDecl, Owned, in ParseEnumSpecifier() 5348 PrevSpec, DiagID, TagDecl, Owned, in ParseEnumSpecifier()
|