Home
last modified time | relevance | path

Searched refs:dstStore (Results 1 – 11 of 11) sorted by relevance

/dports/net/olsrd/olsrd-0.9.8/lib/info.java/org.olsr.v1.info.api/src/org/olsr/v1/info/api/dto/
H A DJsonInfoSgwRouteInfo.java31 private String dstStore = ""; field in JsonInfoSgwRouteInfo
271 return this.dstStore; in getDstStore()
278 public void setDstStore(final InetAddress dstStore) { in setDstStore() argument
279 if (dstStore == null) { in setDstStore()
280 this.dstStore = ""; in setDstStore()
282 this.dstStore = dstStore.getHostAddress(); in setDstStore()
320 result = (prime * result) + this.dstStore.hashCode(); in hashCode()
423 result = this.dstStore.compareTo(other.dstStore); in compareTo()
470 builder.append(this.dstStore); in toString()
/dports/sysutils/nix/nix-2.3.10/src/nix/
H A Dcopy.cc93 ref<Store> dstStore = dstUri.empty() ? openStore() : openStore(dstUri); in run() local
95 copyPaths(srcStore, dstStore, PathSet(storePaths.begin(), storePaths.end()), in run()
/dports/sysutils/nix/nix-2.3.10/src/libstore/
H A Dstore-api.cc595 void copyStorePath(ref<Store> srcStore, ref<Store> dstStore, in copyStorePath() argument
599 auto dstUri = dstStore->getUri(); in copyStorePath()
624 dstStore->addToStore(*info, source, repair, checkSigs); in copyStorePath()
645 dstStore->addToStore(*info, *source, repair, checkSigs); in copyStorePath()
649 void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePaths, in copyPaths() argument
652 PathSet valid = dstStore->queryValidPaths(storePaths, substitute); in copyPaths()
677 if (dstStore->isValidPath(storePath)) { in copyPaths()
694 if (!dstStore->isValidPath(storePath)) { in copyPaths()
698 copyStorePath(srcStore, dstStore, storePath, repair, checkSigs); in copyPaths()
715 void copyClosure(ref<Store> srcStore, ref<Store> dstStore, in copyClosure() argument
[all …]
H A Dstore-api.hh730 void copyStorePath(ref<Store> srcStore, ref<Store> dstStore,
739 void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePaths,
746 void copyClosure(ref<Store> srcStore, ref<Store> dstStore,
/dports/net/olsrd/olsrd-0.9.8/src/
H A DegressTypes.h79 struct olsr_ip_prefix dstStore; member
H A Dgateway.c1830 !route->route.dstSet ? NULL : &route->route.dstStore, // in programRoute()
1900 routes[i].route.dstStore = ipv4_slash_1_routes[i]; in determineBestOverallLinkRoutes()
1981 route->route.dstStore = *dst; in determineEgressLinkRoute()
1997 route->route.dstStore = *dst; in determineEgressLinkRoute()
2013 route->route.dstStore = *dst; in determineEgressLinkRoute()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_basics/buffers/
H A Djuce_FloatVectorOperations.cpp321 #define JUCE_VEC_LOOP(vecOp, srcLoad, dstLoad, dstStore, locals, increment) \ argument
325 dstStore (dest, vecOp); \
329 #define JUCE_VEC_LOOP_TWO_SOURCES(vecOp, src1Load, src2Load, dstStore, locals, increment) \ argument
333 dstStore (dest, vecOp); \
337 …#define JUCE_VEC_LOOP_TWO_SOURCES_WITH_DEST_LOAD(vecOp, src1Load, src2Load, dstLoad, dstStore, loc… argument
341 dstStore (dest, vecOp); \
/dports/audio/carla/Carla-2.4.1/source/modules/juce_audio_basics/buffers/
H A Djuce_FloatVectorOperations.cpp321 #define JUCE_VEC_LOOP(vecOp, srcLoad, dstLoad, dstStore, locals, increment) \ argument
325 dstStore (dest, vecOp); \
329 #define JUCE_VEC_LOOP_TWO_SOURCES(vecOp, src1Load, src2Load, dstStore, locals, increment) \ argument
333 dstStore (dest, vecOp); \
337 …#define JUCE_VEC_LOOP_TWO_SOURCES_WITH_DEST_LOAD(vecOp, src1Load, src2Load, dstLoad, dstStore, loc… argument
341 dstStore (dest, vecOp); \
/dports/audio/libopenshot-audio/libopenshot-audio-0.2.2/JuceLibraryCode/modules/juce_audio_basics/buffers/
H A Djuce_FloatVectorOperations.cpp321 #define JUCE_VEC_LOOP(vecOp, srcLoad, dstLoad, dstStore, locals, increment) \ argument
325 dstStore (dest, vecOp); \
329 #define JUCE_VEC_LOOP_TWO_SOURCES(vecOp, src1Load, src2Load, dstStore, locals, increment) \ argument
333 dstStore (dest, vecOp); \
337 …#define JUCE_VEC_LOOP_TWO_SOURCES_WITH_DEST_LOAD(vecOp, src1Load, src2Load, dstLoad, dstStore, loc… argument
341 dstStore (dest, vecOp); \
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/local/src/
H A DnsMsgMaildirStore.cpp985 nsCOMPtr<nsIMsgPluggableStore> dstStore; in CopyMessages() local
987 aDstFolder->GetMsgStore(getter_AddRefs(dstStore)); in CopyMessages()
988 if (dstStore) dstStore->GetStoreType(dstType); in CopyMessages()
/dports/net/olsrd/olsrd-0.9.8/lib/jsoninfo/src/
H A Dolsrd_jsoninfo.c836 abuf_json_ip_address(session, abuf, "dstStore", &ri->route.dstStore.prefix); in sgw_egress_route_info()
837 abuf_json_int(session, abuf, "dstStoreLength", ri->route.dstStore.prefix_len); in sgw_egress_route_info()