Home
last modified time | relevance | path

Searched refs:cInfo (Results 1 – 25 of 243) sorted by relevance

12345678910

/dports/net-mgmt/openbmp/openbmp-0.14.0/Server/src/
H A Dclient_thread.cpp32 Logger *logger = cInfo->log; in ClientThread_cancel()
34 if (not cInfo->closing) { in ClientThread_cancel()
35 cInfo->closing = true; in ClientThread_cancel()
60 delete cInfo->mbus; in ClientThread_cancel()
61 cInfo->mbus = NULL; in ClientThread_cancel()
80 ClientThreadInfo cInfo; in ClientThread() local
81 cInfo.mbus = NULL; in ClientThread()
83 cInfo.log = thr->log; in ClientThread()
84 cInfo.closing = false; in ClientThread()
105 cInfo.client->c_ip, cInfo.client->c_sock, thr->cfg->bmp_buffer_size); in ClientThread()
[all …]
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/ui/swt/views/table/utils/
H A DTableColumnCreator.java169 final Map<String, cInfo> c = new LightHashMap(50); in initCoreColumns()
172 c.put(RankItem.COLUMN_ID, new cInfo(RankItem.class, RankItem.DATASOURCE_TYPE)); in initCoreColumns()
173 c.put(NameItem.COLUMN_ID, new cInfo(NameItem.class, NameItem.DATASOURCE_TYPE)); in initCoreColumns()
179 c.put(ETAItem.COLUMN_ID, new cInfo(ETAItem.class, ETAItem.DATASOURCE_TYPE)); in initCoreColumns()
192 c.put(UpItem.COLUMN_ID, new cInfo(UpItem.class, UpItem.DATASOURCE_TYPE)); in initCoreColumns()
234 c.put(ColumnTC_NameInfo.COLUMN_ID, new cInfo(ColumnTC_NameInfo.class, tc)); in initCoreColumns()
235 c.put(ColumnTC_Sample.COLUMN_ID, new cInfo(ColumnTC_Sample.class, tc)); in initCoreColumns()
262 cInfo info = (cInfo) c.get(columnID); in initCoreColumns()
285 cInfo info = (cInfo) c.get(id); in initCoreColumns()
292 private static class cInfo { class in TableColumnCreator
[all …]
/dports/games/openclonk/openclonk-release-8.1-src/src/object/
H A DC4ObjectInfoList.cpp218 C4ObjectInfo *cInfo = First; in GetLast() local
219 while (cInfo && cInfo->Next) cInfo=cInfo->Next; in GetLast()
220 return cInfo; in GetLast()
225 for (C4ObjectInfo *cInfo = First; cInfo; cInfo=cInfo->Next) in GetPrevious() local
226 if (cInfo->Next == pInfo) in GetPrevious()
227 return cInfo; in GetPrevious()
233 for (C4ObjectInfo *cInfo = First; cInfo; cInfo=cInfo->Next) in IsElement() local
234 if (cInfo == pInfo) return true; in IsElement()
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/github.com/google/cadvisor/container/crio/
H A Dhandler.go108 cInfo, err := client.ContainerInfo(id)
112 if cInfo.Pid == 0 {
128 storageLogDir := cInfo.LogPath
131 rootfsStorageDir := cInfo.Root
146 Aliases: []string{cInfo.Name, id},
162 labels: cInfo.Labels,
171 handler.image = cInfo.Image
176 restartCount, _ := strconv.Atoi(cInfo.Annotations["io.kubernetes.container.restartCount"])
182 handler.ipAddress = cInfo.IP
290 cInfo, err := h.client.ContainerInfo(id)
[all …]
H A Dclient.go134 cInfo := ContainerInfo{}
147 if err := json.NewDecoder(resp.Body).Decode(&cInfo); err != nil {
150 if len(cInfo.IP) > 0 {
151 return &cInfo, nil
153 if len(cInfo.IPs) > 0 {
154 cInfo.IP = cInfo.IPs[0]
156 return &cInfo, nil
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/test/qt/card/base/
H A Dtest_Reader.cpp61 CardInfo cInfo(CardType::UNKNOWN, QSharedPointer<const EFCardAccess>(), 3, false, false); in test_UpdateRetryCounterCommandFailed()
62 ReaderInfo rInfo(mReaderName, ReaderManagerPlugInType::UNKNOWN, cInfo); in test_UpdateRetryCounterCommandFailed()
74 CardInfo cInfo(CardType::UNKNOWN, efCardAccess, 3, false, false); in test_UpdateRetryCounterUnknown() local
75 ReaderInfo rInfo(mReaderName, ReaderManagerPlugInType::UNKNOWN, cInfo); in test_UpdateRetryCounterUnknown()
86 CardInfo cInfo(CardType::UNKNOWN, efCardAccess, 2, true, false); in test_UpdateRetryCounter_OK_RetryCounterChanged() local
87 ReaderInfo rInfo(mReaderName, ReaderManagerPlugInType::UNKNOWN, cInfo); in test_UpdateRetryCounter_OK_RetryCounterChanged()
104 CardInfo cInfo(CardType::UNKNOWN, QSharedPointer<const EFCardAccess>(), 3, false, false); in test_Update()
105 ReaderInfo rInfo(mReaderName, ReaderManagerPlugInType::UNKNOWN, cInfo); in test_Update()
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/hashicorp/consul/agent/xds/
H A Droutes.go27 return routesFromSnapshotConnectProxy(cInfo, cfgSnap)
29 return routesFromSnapshotIngressGateway(cInfo, cfgSnap)
104 virtualHost, err := makeUpstreamRouteForDiscoveryChain(cInfo, upstreamID, chain, domains)
164 cInfo connectionInfo,
181 routeMatch := makeRouteMatchForDiscoveryRoute(cInfo, discoveryRoute, chain.Protocol)
298 if cInfo.ProxyFeatures.RouterMatchSafeRegex {
326 if cInfo.ProxyFeatures.RouterMatchSafeRegex {
365 if cInfo.ProxyFeatures.RouterMatchSafeRegex {
387 if cInfo.ProxyFeatures.RouterMatchSafeRegex {
399 if cInfo.ProxyFeatures.RouterMatchSafeRegex {
[all …]
/dports/net-p2p/vuze/vuze-5.7.4.0_2/com/aelitis/azureus/ui/swt/columns/utils/
H A DTableColumnCreatorV3.java454 final Map<String, cInfo> c = new LightHashMap<String, cInfo>(7); in initCoreColumns()
460 c.put(ColumnStream.COLUMN_ID, new cInfo(ColumnStream.class, in initCoreColumns()
462 c.put(DateAddedItem.COLUMN_ID, new cInfo(DateAddedItem.class, in initCoreColumns()
468 c.put(ColumnChatMessageCount.COLUMN_ID, new cInfo( in initCoreColumns()
478 c.put(ColumnActivityActions.COLUMN_ID, new cInfo( in initCoreColumns()
497 cInfo info = c.get(columnID); in initCoreColumns()
521 cInfo info = c.get(column.getName()); in initCoreColumns()
548 cInfo info = c.get(id); in initCoreColumns()
559 private static class cInfo class in TableColumnCreatorV3
565 public cInfo(Class cla, Class forDataSourceType) { in cInfo() method in TableColumnCreatorV3.cInfo
[all …]
/dports/net/gerbera/gerbera-1.9.2/src/config/
H A Dclient_config.cc41 auto cInfo = ClientInfo(); in ClientConfig() local
42 cInfo.type = ClientType::Unknown; in ClientConfig()
44 cInfo.matchType = ClientMatchType::IP; in ClientConfig()
45 cInfo.match = ip; in ClientConfig()
47 cInfo.matchType = ClientMatchType::UserAgent; in ClientConfig()
48 cInfo.match = userAgent; in ClientConfig()
50 cInfo.matchType = ClientMatchType::None; in ClientConfig()
52 cInfo.flags = flags; in ClientConfig()
55 cInfo.name = fmt::format("Manual Setup for{}{}", sIP, sUA); in ClientConfig()
56 clientInfo = std::make_unique<ClientInfo>(std::move(cInfo)); in ClientConfig()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.WorkflowServices/System/ServiceModel/Configuration/
H A DPersistenceProviderElement.cs81 … ConstructorInfo cInfo = providerType.GetConstructor(new Type[] { typeof(NameValueCollection) }); in CreateBehavior()
83 if (cInfo != null) in CreateBehavior()
85 …providerFactory = (PersistenceProviderFactory) cInfo.Invoke(new object[] { this.persistenceProvide… in CreateBehavior()
89 cInfo = providerType.GetConstructor(new Type[] { }); in CreateBehavior()
91 Fx.Assert(cInfo != null, in CreateBehavior()
94 providerFactory = (PersistenceProviderFactory) cInfo.Invoke(null); in CreateBehavior()
/dports/science/chrono/chrono-7.0.1/src/chrono_vehicle/tracked_vehicle/
H A DChTrackContactManager.cpp580 for (auto& cInfo : m_collision_manager->m_collisions_idler) { in ApplyForces() local
585 ComputeIdlerContactForce(cInfo, idler_body, shoe_body, force_shoe); in ApplyForces()
588 … Add(chrono_types::make_shared<ChLoadBodyForce>(idler_body, -force_shoe, false, cInfo.vpA, false)); in ApplyForces()
589 … Add(chrono_types::make_shared<ChLoadBodyForce>(shoe_body, +force_shoe, false, cInfo.vpB, false)); in ApplyForces()
594 for (auto& cInfo : m_collision_manager->m_collisions_wheel) { in ApplyForces() local
599 ComputeWheelContactForce(cInfo, wheel_body, shoe_body, force_shoe); in ApplyForces()
602 … Add(chrono_types::make_shared<ChLoadBodyForce>(wheel_body, -force_shoe, false, cInfo.vpA, false)); in ApplyForces()
603 … Add(chrono_types::make_shared<ChLoadBodyForce>(shoe_body, +force_shoe, false, cInfo.vpB, false)); in ApplyForces()
608 for (auto& cInfo : m_collision_manager->m_collisions_ground) { in ApplyForces() local
613 ComputeGroundContactForce(cInfo, ground_body, shoe_body, force_shoe); in ApplyForces()
[all …]
/dports/www/nift/nsm-2.4.11/
H A DProjectInfo.cpp774 TrackedInfo cInfo; in info() local
775 cInfo.name = *name; in info()
778 cInfo = *(trackedAll.find(cInfo)); in info()
954 for(auto cInfo=trackedAll.begin(); cInfo!=trackedAll.end(); ++cInfo) in remove_hash_files() local
2495 TrackedInfo cInfo; in new_title() local
2496 cInfo.name = name; in new_title()
2499 cInfo = *(trackedAll.find(cInfo)); in new_title()
2583 TrackedInfo cInfo; in new_template() local
2584 cInfo.name = name; in new_template()
2587 cInfo = *(trackedAll.find(cInfo)); in new_template()
[all …]
/dports/multimedia/vvdec/vvdec-1.1.2/source/Lib/DecoderLib/
H A DDecLib.cpp540 const ConstraintInfo *cInfo = NULL; in checkNalUnitConstraints() local
544 if( cInfo != NULL ) in checkNalUnitConstraints()
546 xCheckNalUnitConstraintFlags( cInfo, naluType ); in checkNalUnitConstraints()
553 if( cInfo != NULL ) in xCheckNalUnitConstraintFlags()
557 CHECK( cInfo->getNoStsaConstraintFlag() && naluType == NAL_UNIT_CODED_SLICE_STSA, in xCheckNalUnitConstraintFlags()
559 CHECK( cInfo->getNoRaslConstraintFlag() && naluType == NAL_UNIT_CODED_SLICE_RASL, in xCheckNalUnitConstraintFlags()
561 CHECK( cInfo->getNoRadlConstraintFlag() && naluType == NAL_UNIT_CODED_SLICE_RADL, in xCheckNalUnitConstraintFlags()
567 CHECK( cInfo->getNoCraConstraintFlag() && naluType == NAL_UNIT_CODED_SLICE_CRA, in xCheckNalUnitConstraintFlags()
569 CHECK( cInfo->getNoGdrConstraintFlag() && naluType == NAL_UNIT_CODED_SLICE_GDR, in xCheckNalUnitConstraintFlags()
571 CHECK( cInfo->getNoApsConstraintFlag() && naluType == NAL_UNIT_PREFIX_APS, in xCheckNalUnitConstraintFlags()
[all …]
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dmsdadc.h121 virtual HRESULT WINAPI GetInfo(ULONG cInfo,DCINFOTYPE rgeInfoType[],DCINFO **prgInfo) = 0;
122 virtual HRESULT WINAPI SetInfo(ULONG cInfo,DCINFO rgInfo[]) = 0;
130 … HRESULT (WINAPI *GetInfo)(IDCInfo *This,ULONG cInfo,DCINFOTYPE rgeInfoType[],DCINFO **prgInfo);
131 HRESULT (WINAPI *SetInfo)(IDCInfo *This,ULONG cInfo,DCINFO rgInfo[]);
141 #define IDCInfo_GetInfo(This,cInfo,rgeInfoType,prgInfo) (This)->lpVtbl->GetInfo(This,cInfo,rgeInfoT… argument
142 #define IDCInfo_SetInfo(This,cInfo,rgInfo) (This)->lpVtbl->SetInfo(This,cInfo,rgInfo) argument
145 …HRESULT WINAPI IDCInfo_GetInfo_Proxy(IDCInfo *This,ULONG cInfo,DCINFOTYPE rgeInfoType[],DCINFO **p…
147 HRESULT WINAPI IDCInfo_SetInfo_Proxy(IDCInfo *This,ULONG cInfo,DCINFO rgInfo[]);
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dmsdadc.h121 virtual HRESULT WINAPI GetInfo(ULONG cInfo,DCINFOTYPE rgeInfoType[],DCINFO **prgInfo) = 0;
122 virtual HRESULT WINAPI SetInfo(ULONG cInfo,DCINFO rgInfo[]) = 0;
130 … HRESULT (WINAPI *GetInfo)(IDCInfo *This,ULONG cInfo,DCINFOTYPE rgeInfoType[],DCINFO **prgInfo);
131 HRESULT (WINAPI *SetInfo)(IDCInfo *This,ULONG cInfo,DCINFO rgInfo[]);
141 #define IDCInfo_GetInfo(This,cInfo,rgeInfoType,prgInfo) (This)->lpVtbl->GetInfo(This,cInfo,rgeInfoT… argument
142 #define IDCInfo_SetInfo(This,cInfo,rgInfo) (This)->lpVtbl->SetInfo(This,cInfo,rgInfo) argument
145 …HRESULT WINAPI IDCInfo_GetInfo_Proxy(IDCInfo *This,ULONG cInfo,DCINFOTYPE rgeInfoType[],DCINFO **p…
147 HRESULT WINAPI IDCInfo_SetInfo_Proxy(IDCInfo *This,ULONG cInfo,DCINFO rgInfo[]);
/dports/science/simbody/simbody-Simbody-3.7/Simbody/src/
H A DConstraint.cpp2823 SBInstancePerConstraintInfo& cInfo = in realizeInstance() local
2826 cInfo.clear(); in realizeInstance()
2837 cInfo.holoErrSegment = in realizeInstance()
2839 cInfo.nonholoErrSegment = in realizeInstance()
2841 cInfo.accOnlyErrSegment = in realizeInstance()
2915 cInfo.participatingQ = cInfo.constrainedQ; in realizeInstance()
2916 cInfo.participatingU = cInfo.constrainedU; in realizeInstance()
2929 std::sort(cInfo.participatingQ.begin(), cInfo.participatingQ.end()); in realizeInstance()
2931 std::unique(cInfo.participatingQ.begin(), cInfo.participatingQ.end()); in realizeInstance()
2932 cInfo.participatingQ.erase(newEnd, cInfo.participatingQ.end()); in realizeInstance()
[all …]
/dports/math/vampire/vampire-4.5.1/DP/
H A DSimpleCongruenceClosure.cpp911 ConstInfo& cInfo = _cInfos[c]; in computeConstsNormalForm() local
912 if (!cInfo.term.isEmpty() && cInfo.normalForm.isEmpty()) { in computeConstsNormalForm()
913 Term* t = cInfo.term.term(); in computeConstsNormalForm()
965 ConstInfo& cInfo = _cInfos[c]; in getModel() local
969 cInfo.processed = false; in getModel()
970 cInfo.half_normalized = false; in getModel()
977 cInfo.normalForm = cInfo.term; in getModel()
988 ASS_NEQ(cInfo.namedPair.first,0); in getModel()
989 ASS_NEQ(cInfo.namedPair.second,0); in getModel()
1025 ConstInfo& cInfo = _cInfos[c]; in getModel() local
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/langtools/tools/javac/lambda/intersection/
H A DIntersectionTargetTypeTest.java191 for (CastInfo cInfo : allCastInfo()) { in main()
193 new IntersectionTargetTypeTest(cInfo, ek).run(comp, fm); in main()
224 CastInfo cInfo; field in IntersectionTargetTypeTest
229 IntersectionTargetTypeTest(CastInfo cInfo, ExpressionKind ek) { in IntersectionTargetTypeTest() argument
230 this.cInfo = cInfo; in IntersectionTargetTypeTest()
251 … source += bodyTemplate.replaceAll("#C", cInfo.getCast()).replaceAll("#E", ek.exprString); in JavaSource()
274 boolean errorExpected = !cInfo.wellFormed(); in check()
278 for (TypeKind tk : cInfo.types) { in check()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/langtools/tools/javac/lambda/intersection/
H A DIntersectionTargetTypeTest.java191 for (CastInfo cInfo : allCastInfo()) { in main()
193 new IntersectionTargetTypeTest(cInfo, ek).run(comp, fm); in main()
224 CastInfo cInfo; field in IntersectionTargetTypeTest
229 IntersectionTargetTypeTest(CastInfo cInfo, ExpressionKind ek) { in IntersectionTargetTypeTest() argument
230 this.cInfo = cInfo; in IntersectionTargetTypeTest()
251 … source += bodyTemplate.replaceAll("#C", cInfo.getCast()).replaceAll("#E", ek.exprString); in JavaSource()
274 boolean errorExpected = !cInfo.wellFormed(); in check()
278 for (TypeKind tk : cInfo.types) { in check()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/langtools/tools/javac/lambda/intersection/
H A DIntersectionTargetTypeTest.java191 for (CastInfo cInfo : allCastInfo()) { in main()
193 new IntersectionTargetTypeTest(cInfo, ek).run(comp, fm); in main()
224 CastInfo cInfo; field in IntersectionTargetTypeTest
229 IntersectionTargetTypeTest(CastInfo cInfo, ExpressionKind ek) { in IntersectionTargetTypeTest() argument
230 this.cInfo = cInfo; in IntersectionTargetTypeTest()
251 … source += bodyTemplate.replaceAll("#C", cInfo.getCast()).replaceAll("#E", ek.exprString); in JavaSource()
274 boolean errorExpected = !cInfo.wellFormed(); in check()
278 for (TypeKind tk : cInfo.types) { in check()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/langtools/tools/javac/lambda/intersection/
H A DIntersectionTargetTypeTest.java191 for (CastInfo cInfo : allCastInfo()) { in main()
193 new IntersectionTargetTypeTest(cInfo, ek).run(comp, fm); in main()
224 CastInfo cInfo; field in IntersectionTargetTypeTest
229 IntersectionTargetTypeTest(CastInfo cInfo, ExpressionKind ek) { in IntersectionTargetTypeTest() argument
230 this.cInfo = cInfo; in IntersectionTargetTypeTest()
251 … source += bodyTemplate.replaceAll("#C", cInfo.getCast()).replaceAll("#E", ek.exprString); in JavaSource()
274 boolean errorExpected = !cInfo.wellFormed(); in check()
278 for (TypeKind tk : cInfo.types) { in check()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/langtools/tools/javac/lambda/intersection/
H A DIntersectionTargetTypeTest.java191 for (CastInfo cInfo : allCastInfo()) { in main()
193 new IntersectionTargetTypeTest(cInfo, ek).run(comp, fm); in main()
224 CastInfo cInfo; field in IntersectionTargetTypeTest
229 IntersectionTargetTypeTest(CastInfo cInfo, ExpressionKind ek) { in IntersectionTargetTypeTest() argument
230 this.cInfo = cInfo; in IntersectionTargetTypeTest()
251 … source += bodyTemplate.replaceAll("#C", cInfo.getCast()).replaceAll("#E", ek.exprString); in JavaSource()
274 boolean errorExpected = !cInfo.wellFormed(); in check()
278 for (TypeKind tk : cInfo.types) { in check()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/langtools/tools/javac/lambda/intersection/
H A DIntersectionTargetTypeTest.java191 for (CastInfo cInfo : allCastInfo()) { in main()
193 new IntersectionTargetTypeTest(cInfo, ek).run(comp, fm); in main()
224 CastInfo cInfo; field in IntersectionTargetTypeTest
229 IntersectionTargetTypeTest(CastInfo cInfo, ExpressionKind ek) { in IntersectionTargetTypeTest() argument
230 this.cInfo = cInfo; in IntersectionTargetTypeTest()
251 … source += bodyTemplate.replaceAll("#C", cInfo.getCast()).replaceAll("#E", ek.exprString); in JavaSource()
274 boolean errorExpected = !cInfo.wellFormed(); in check()
278 for (TypeKind tk : cInfo.types) { in check()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/langtools/tools/javac/lambda/intersection/
H A DIntersectionTargetTypeTest.java191 for (CastInfo cInfo : allCastInfo()) { in main()
193 new IntersectionTargetTypeTest(cInfo, ek).run(comp, fm); in main()
224 CastInfo cInfo; field in IntersectionTargetTypeTest
229 IntersectionTargetTypeTest(CastInfo cInfo, ExpressionKind ek) { in IntersectionTargetTypeTest() argument
230 this.cInfo = cInfo; in IntersectionTargetTypeTest()
251 … source += bodyTemplate.replaceAll("#C", cInfo.getCast()).replaceAll("#E", ek.exprString); in JavaSource()
274 boolean errorExpected = !cInfo.wellFormed(); in check()
278 for (TypeKind tk : cInfo.types) { in check()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/langtools/tools/javac/lambda/intersection/
H A DIntersectionTargetTypeTest.java191 for (CastInfo cInfo : allCastInfo()) { in main()
193 new IntersectionTargetTypeTest(cInfo, ek).run(comp, fm); in main()
224 CastInfo cInfo; field in IntersectionTargetTypeTest
229 IntersectionTargetTypeTest(CastInfo cInfo, ExpressionKind ek) { in IntersectionTargetTypeTest() argument
230 this.cInfo = cInfo; in IntersectionTargetTypeTest()
251 … source += bodyTemplate.replaceAll("#C", cInfo.getCast()).replaceAll("#E", ek.exprString); in JavaSource()
274 boolean errorExpected = !cInfo.wellFormed(); in check()
278 for (TypeKind tk : cInfo.types) { in check()

12345678910