tokens_count     1415 lib/vfs/path.c     size_t tokens_count = vfs_path_tokens_count (vpath);
tokens_count     1421 lib/vfs/path.c         length = tokens_count;
tokens_count     1424 lib/vfs/path.c         length = tokens_count + length;
tokens_count     1427 lib/vfs/path.c         start_position = (ssize_t) tokens_count + start_position;
tokens_count     1432 lib/vfs/path.c     if (start_position >= (ssize_t) tokens_count)
tokens_count     1435 lib/vfs/path.c     if (start_position + (ssize_t) length > (ssize_t) tokens_count)
tokens_count     1436 lib/vfs/path.c         length = tokens_count - start_position;
tokens_count      154 tests/lib/vfs/path_manipulations.c     size_t tokens_count;
tokens_count      160 tests/lib/vfs/path_manipulations.c     tokens_count = vfs_path_tokens_count (vpath);
tokens_count      163 tests/lib/vfs/path_manipulations.c     ck_assert_int_eq (tokens_count, data->expected_token_count);