Home
last modified time | relevance | path

Searched refs:max_remove (Results 1 – 7 of 7) sorted by relevance

/dports/security/snort3/snort3-3.1.19.0/src/stream/tcp/
H A Dheld_packet_queue.cc64 bool HeldPacketQueue::execute(const timeval& cur_time, int max_remove) in execute() argument
66 while ( !q.empty() && (max_remove < 0 || max_remove--) ) in execute()
H A Dheld_packet_queue.h70 bool execute(const timeval& cur_time, int max_remove);
H A Dtcp_stream_tracker.cc743 bool TcpStreamTracker::release_held_packets(const timeval& cur_time, int max_remove) in release_held_packets() argument
747 is_front_expired = hpq->execute(cur_time, max_remove); in release_held_packets()
H A Dtcp_stream_tracker.h298 static bool release_held_packets(const timeval& cur_time, int max_remove);
/dports/biology/sra-tools/sra-tools-2.11.0/tools/cache-mgr/
H A Dcache-mgr.c190 uint64_t max_remove; member
218 options->max_remove = 0; in init_tool_options()
414 rc = get_max_remove( args, &options->max_remove ); in get_tool_options()
972 … if ( obj->options->max_remove > 0 && data->removed_size >= obj->options->max_remove ) in on_clear_path()
975 … KOutMsg( "the maximum of %,lu bytes to be removed is reached now\n", obj->options->max_remove ); in on_clear_path()
992 if ( octx->options->max_remove > 0 ) in perform_clear()
993 rc = KOutMsg( "removing max %,u bytes\n", octx->options->max_remove ); in perform_clear()
/dports/www/squid/squid-4.15/src/fs/ufs/
H A DUFSSwapDir.cc480 int max_remove = (int) (f * 300.0 + 20.0); in maintain() local
485 debugs(47, 3, "f=" << f << ", max_scan=" << max_scan << ", max_remove=" << max_remove); in maintain()
496 if (removed >= max_remove) in maintain()
513 " removed " << removed << "/" << max_remove << " f=" << in maintain()
/dports/security/snort3/snort3-3.1.19.0/src/stream/
H A Dstream.cc372 int max_remove = idle ? -1 : 1; // -1 = all eligible in handle_timeouts() local
373 TcpStreamTracker::release_held_packets(cur_time, max_remove); in handle_timeouts()