Home
last modified time | relevance | path

Searched refs:Owned (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_allocator.h177 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 DRetainPtrCtorAdoptChecker.cpp180 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 DJSON.h589 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 DRetainCountChecker.h53 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 DRetainCountChecker.cpp52 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 DRetainCountDiagnostics.cpp117 case RefVal::Owned: in shouldGenerateNote()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h105 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 DPythonDataObjects.cpp188 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 DScriptInterpreterPython.cpp864 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 DTypeErasedDataflowAnalysis.cpp176 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 Dsrp.h.in57 /* Owned by us. */
64 /* Owned by us. */
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp853 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 DMicrosoftDemangleNodes.cpp124 std::string Owned(SV.begin(), SV.end()); in toString() local
126 return Owned; in toString()
H A DMicrosoftDemangle.cpp1025 std::string_view Owned = copyString(OB); in memorizeIdentifier() local
1026 memorizeString(Owned); in memorizeIdentifier()
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig5 return {PyRefType::Owned, SWIG_NewPointerObj(obj, info, SWIG_POINTER_OWN)};
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp822 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 DFile.h381 Owned = true, enumerator
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp244 std::make_shared<StreamFile>(outfile_handle, NativeFile::Owned), in ScriptInterpreterIORedirect()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSplitModule.cpp1563 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 DCompilerInstance.cpp1503 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 DDeclSpec.h745 unsigned &DiagID, Decl *Rep, bool Owned,
753 unsigned &DiagID, Decl *Rep, bool Owned,
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dglossary.md293 Owned by the QTX.
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsc7280.dtsi2537 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 DParseDeclCXX.cpp1986 bool Owned = false; in ParseClassSpecifier() local
2143 DS.getModulePrivateSpecLoc(), TParams, Owned, IsDependent, in ParseClassSpecifier()
2208 DiagID, TagOrTempResult.get(), Owned, Policy); in ParseClassSpecifier()
H A DParseDecl.cpp5270 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()

12