Lines Matching full:is

13  * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
39 * StableVector -- a minimal vector class where growth is automatic and
45 * Locking is only done when a level is added. Access is amortized
54 /// This bound is guaranteed not to be exceeded on 64-bit archs
91 // we need to make sure this is done after levelVect is inserted in expand()
92 // (what we want is effectively a memory barrier here). in expand()
98 * Given an index, determine which level and element of that level is
160 * Constructor; insure that no client address or thrift call name is
166 * A connection has been made; record its address. Since this is the
183 * A call has been made on this connection; record its name. Since this is
195 * most recently processed if the connection is still open for additional
219 * address and the call it is executing. This information is indexed by
220 * socket file descriptor and in the present implementation is updated
229 * Return the info object for a given file descriptor. If "grow" is true
231 * before). If "grow" is false and the info vector isn't large enough,
232 * or if "fd" is negative, return nullptr.
251 * One of these is constructed for each open connection/descriptor and links
296 * where "FD" is the file descriptor for the client's socket, "IPADDR"
297 * is the IP address (as reported by accept()), "CALLNAME" is the
298 * current or most recent Thrift function name, "DURATION" is the
299 * duration of the connection, while NCALLS is the number of Thrift
309 * this -- TClientInfoCallStatsHandler is the other -- since in the latter