Home
last modified time | relevance | path

Searched refs:nc_key (Results 1 – 9 of 9) sorted by relevance

/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/objtools/uudutil/test/
H A Dtest_uudutil.cpp160 string nc_key = in BOOST_AUTO_TEST_CASE() local
164 BOOST_CHECK( !nc_key.empty() ); in BOOST_AUTO_TEST_CASE()
206 string nc_key = in BOOST_AUTO_TEST_CASE() local
213 BOOST_CHECK( !nc_key.empty() ); in BOOST_AUTO_TEST_CASE()
251 string nc_key = in BOOST_AUTO_TEST_CASE() local
255 BOOST_CHECK( !nc_key.empty() ); in BOOST_AUTO_TEST_CASE()
307 string nc_key = in BOOST_AUTO_TEST_CASE() local
314 BOOST_CHECK( !nc_key.empty() ); in BOOST_AUTO_TEST_CASE()
371 BOOST_CHECK( !nc_key.empty() ); in s_TestSeqAnnotAsn()
491 BOOST_CHECK( !nc_key.empty() ); in BOOST_AUTO_TEST_CASE()
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/netcache/
H A Dactive_handler.cpp326 m_CmdToSend += nc_key.Cache(); in SearchMeta()
328 m_CmdToSend += nc_key.RawKey(); in SearchMeta()
330 m_CmdToSend += nc_key.SubKey(); in SearchMeta()
360 m_CmdToSend += nc_key.Cache(); in CopyPurge()
378 m_CmdToSend += nc_key.Cache(); in CopyUpdate()
398 m_CmdToSend += nc_key.Cache(); in CopyRemove()
439 m_CmdToSend += nc_key.Cache(); in ProxyRemove()
473 m_CmdToSend += nc_key.Cache(); in ProxyHasBlob()
508 m_CmdToSend += nc_key.Cache(); in ProxyGetSize()
546 m_CmdToSend += nc_key.Cache(); in ProxySetValid()
[all …]
H A Dnc_storage_blob.cpp1756 CNCBlobAccessor::IsPurged(const CNCBlobKeyLight& nc_key) const in IsPurged()
1758 if (nc_key.Cache().empty()) { in IsPurged()
1765 string key(nc_key.Cache()); in IsPurged()
1774 key.append(nc_key.RawKey()); in IsPurged()
1781 CNCBlobAccessor::Purge(const CNCBlobKeyLight& nc_key, Uint8 when) in Purge() argument
1803 string key(nc_key.Cache()); in Purge()
1804 if (nc_key.RawKey().empty()) { in Purge()
1815 key.append(1,'\1').append(nc_key.RawKey()).append(1,'\1'); in Purge()
1986 CNCBlobKeyLight nc_key(m_Key); in x_RequestBlobAccess() local
1988 if (nc_key.IsICacheKey()) { in x_RequestBlobAccess()
[all …]
H A Dnc_storage_blob.hpp189 bool IsPurged(const CNCBlobKeyLight& nc_key) const;
191 static bool Purge(const CNCBlobKeyLight& nc_key, Uint8 when);
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/objtools/uudutil/
H A Dproject_storage.cpp146 string nc_key = key; in SaveProject() local
148 auto_ptr<CObjectOStream> ostr(x_GetObjectOStream(data_fmt, nso, nc_key, in SaveProject()
165 return nc_key; in SaveProject()
176 string nc_key = key; in SaveObject() local
178 auto_ptr<CObjectOStream> ostr(x_GetObjectOStream(data_fmt, nso, nc_key, in SaveObject()
192 return nc_key; in SaveObject()
206 string nc_key = key; in SaveString() local
208 auto_ptr<CNcbiOstream> ostr = x_GetOutputStream(nc_key, time_to_live, default_flags, nso); in SaveString()
216 return nc_key; in SaveString()
231 string nc_key = key; in SaveStream() local
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/grid/grid_cli/
H A Dmisc_cmds.cpp69 CNetCacheKey nc_key; in Cmd_WhatIs() local
73 m_Opts.id.length(), &nc_key, m_CompoundIDPool)) { in Cmd_WhatIs()
75 nc_key.GetVersion()); in Cmd_WhatIs()
76 PrintBlobMeta(nc_key); in Cmd_WhatIs()
H A Dutil.cpp891 CNetCacheKey nc_key; in g_WhatIs() local
893 if (CNetCacheKey::ParseBlobKey(id.c_str(), id.length(), &nc_key, id_pool)) { in g_WhatIs()
894 return s_GetBlobMeta(nc_key); in g_WhatIs()
/dports/misc/rump/buildrump.sh-b914579/src/lib/libc/rpc/
H A Dgetnetconfig.c150 static thread_key_t nc_key; variable
156 thr_keycreate(&nc_key, free); in __nc_error_setup()
172 nc_addr = thr_getspecific(nc_key) ; in __nc_error()
177 if (thr_setspecific(nc_key, (void *) nc_addr) != 0) { in __nc_error()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/misc/netstorage/test/
H A Dtest_netstorage.cpp1775 auto nc_key = make_pair(GetRandom::GetUniqueKey(), fNST_NetCache); in TestSpecialExists() local
1790 Exists<TNotFound>(netstorage, em_loc, nc_key, ctx("Empty vs NetCache")); in TestSpecialExists()
1796 Exists<TNotFound>(netstorage, nf_loc, nc_key, ctx("Not found vs NetCache")); in TestSpecialExists()
1802 Exists<TFound> (netstorage, nc_loc, nc_key, ctx("NetCache vs NetCache")); in TestSpecialExists()
1808 Exists<TFound> (netstorage, nm_loc, nc_key, ctx("NetCache&Movable vs NetCache")); in TestSpecialExists()
1814 Exists<TNotFound>(netstorage, ft_loc, nc_key, ctx("FileTrack vs NetCache")); in TestSpecialExists()
1820 Exists<TNotFound>(netstorage, fm_loc, nc_key, ctx("FileTrack&Movable vs NetCache")); in TestSpecialExists()