Home
last modified time | relevance | path

Searched refs:new_stat (Results 1 – 25 of 406) sorted by relevance

12345678910>>...17

/dports/net/wireshark/wireshark-3.6.1/epan/
H A Dstat_tap_ui.c166 guint len = (guint) strlen(new_stat->cli_string); in stat_tap_get_filter()
170 if (!strncmp(opt_arg, new_stat->cli_string, len)) in stat_tap_get_filter()
178 if (new_stat->stat_filter_check_cb) in stat_tap_get_filter()
216 if (new_stat->tables == NULL) in stat_tap_add_table()
219 g_array_insert_val(new_stat->tables, new_stat->tables->len, table); in stat_tap_add_table()
263 void reset_stat_table(stat_tap_table_ui* new_stat) in reset_stat_table() argument
268 for (i = 0; i < new_stat->tables->len; i++) in reset_stat_table()
272 if (new_stat->stat_tap_reset_table_cb) in reset_stat_table()
277 void free_stat_tables(stat_tap_table_ui* new_stat) in free_stat_tables() argument
283 for (i = 0; i < new_stat->tables->len; i++) in free_stat_tables()
[all …]
H A Dstat_tap_ui.h127 void (* stat_tap_init_cb)(struct _stat_tap_table_ui* new_stat);
158 WS_DLL_PUBLIC void stat_tap_get_filter(stat_tap_table_ui* new_stat, const char *opt_arg, const char…
161 WS_DLL_PUBLIC void stat_tap_add_table(stat_tap_table_ui* new_stat, stat_tap_table* table);
166 WS_DLL_PUBLIC void reset_stat_table(stat_tap_table_ui* new_stat);
178 WS_DLL_PUBLIC void free_stat_tables(stat_tap_table_ui* new_stat);
/dports/net/wireshark-lite/wireshark-3.6.1/epan/
H A Dstat_tap_ui.c166 guint len = (guint) strlen(new_stat->cli_string); in stat_tap_get_filter()
170 if (!strncmp(opt_arg, new_stat->cli_string, len)) in stat_tap_get_filter()
178 if (new_stat->stat_filter_check_cb) in stat_tap_get_filter()
216 if (new_stat->tables == NULL) in stat_tap_add_table()
219 g_array_insert_val(new_stat->tables, new_stat->tables->len, table); in stat_tap_add_table()
263 void reset_stat_table(stat_tap_table_ui* new_stat) in reset_stat_table() argument
268 for (i = 0; i < new_stat->tables->len; i++) in reset_stat_table()
272 if (new_stat->stat_tap_reset_table_cb) in reset_stat_table()
277 void free_stat_tables(stat_tap_table_ui* new_stat) in free_stat_tables() argument
283 for (i = 0; i < new_stat->tables->len; i++) in free_stat_tables()
[all …]
/dports/net/tshark-lite/wireshark-3.6.1/epan/
H A Dstat_tap_ui.c166 guint len = (guint) strlen(new_stat->cli_string); in stat_tap_get_filter()
170 if (!strncmp(opt_arg, new_stat->cli_string, len)) in stat_tap_get_filter()
178 if (new_stat->stat_filter_check_cb) in stat_tap_get_filter()
216 if (new_stat->tables == NULL) in stat_tap_add_table()
219 g_array_insert_val(new_stat->tables, new_stat->tables->len, table); in stat_tap_add_table()
263 void reset_stat_table(stat_tap_table_ui* new_stat) in reset_stat_table() argument
268 for (i = 0; i < new_stat->tables->len; i++) in reset_stat_table()
272 if (new_stat->stat_tap_reset_table_cb) in reset_stat_table()
277 void free_stat_tables(stat_tap_table_ui* new_stat) in free_stat_tables() argument
283 for (i = 0; i < new_stat->tables->len; i++) in free_stat_tables()
[all …]
/dports/net/tshark/wireshark-3.6.1/epan/
H A Dstat_tap_ui.c166 guint len = (guint) strlen(new_stat->cli_string); in stat_tap_get_filter()
170 if (!strncmp(opt_arg, new_stat->cli_string, len)) in stat_tap_get_filter()
178 if (new_stat->stat_filter_check_cb) in stat_tap_get_filter()
216 if (new_stat->tables == NULL) in stat_tap_add_table()
219 g_array_insert_val(new_stat->tables, new_stat->tables->len, table); in stat_tap_add_table()
263 void reset_stat_table(stat_tap_table_ui* new_stat) in reset_stat_table() argument
268 for (i = 0; i < new_stat->tables->len; i++) in reset_stat_table()
272 if (new_stat->stat_tap_reset_table_cb) in reset_stat_table()
277 void free_stat_tables(stat_tap_table_ui* new_stat) in free_stat_tables() argument
283 for (i = 0; i < new_stat->tables->len; i++) in free_stat_tables()
[all …]
/dports/devel/p5-IO-Async/IO-Async-0.800/t/
H A D27file.t41 my ( $new_stat, $old_stat );
50 ( undef, $new_stat, $old_stat ) = @_;
73 isa_ok( $new_stat, "File::stat", '$new_stat isa File::stat' );
85 my ( $old_stat, $new_stat );
90 ( undef, $new_stat, $old_stat ) = @_;
107 is( $new_stat->dev, (stat $wr)[0], '$new_stat->dev for renamed file' );
108 is( $new_stat->ino, (stat $wr)[1], '$new_stat->ino for renamed file' );
/dports/databases/tiledb/TileDB-2.5.2/tiledb/sm/stats/
H A Dstats.cc178 std::string new_stat = prefix_ + stat; in add_counter() local
180 auto it = counters_.find(new_stat); in add_counter()
182 counters_[new_stat] = count; in add_counter()
192 std::string new_stat = prefix_ + stat; in start_timer() local
205 std::string new_stat = prefix_ + stat; in end_timer() local
210 auto it = start_times_.find(new_stat); in end_timer()
219 auto it2 = timers_.find(new_stat + ".sum"); in end_timer()
221 timers_[new_stat + ".sum"] = duration.count(); in end_timer()
227 auto it3 = timers_.find(new_stat + ".max"); in end_timer()
229 timers_[new_stat + ".max"] = duration.count(); in end_timer()
[all …]
/dports/sysutils/py-ranger/ranger-1.9.3/ranger/container/
H A Dfsobject.py290 new_stat = None
294 new_stat = self.preload[1]
297 new_stat = self.preload[0]
299 self.exists = True if new_stat else False
302 new_stat = lstat(path)
305 new_stat = stat(path)
312 self.accessible = True if new_stat else False
313 mode = new_stat.st_mode if new_stat else 0
329 if new_stat:
330 self.size = new_stat.st_size
[all …]
/dports/devel/p5-Logfile-Rotate/Logfile-Rotate-1.04/t/
H A D06persist.t44 my @new_stat = stat $f;
45 print "not " unless $old_stat[2] == $new_stat[2];
47 print "not " unless $old_stat[8] == $new_stat[8];
49 print "not " unless $old_stat[9] == $new_stat[9];
51 print "not " unless $old_stat[4] == $new_stat[4];
53 print "not " unless $old_stat[5] == $new_stat[5];
/dports/lang/php80/php-8.0.15/ext/standard/tests/file/
H A Dstat_variation4-win32.phpt36 $new_stat = stat($old_dirname);
40 var_dump( compare_self_stat($new_stat) );
42 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
55 $new_stat = stat($old_filename);
58 var_dump( compare_self_stat($new_stat) );
60 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
H A Dstat_variation6-win32.phpt36 $new_stat = stat($filename);
39 var_dump( compare_self_stat($new_stat) );
42 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
53 $new_stat = stat($dirname);
56 var_dump( compare_self_stat($new_stat) );
59 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
/dports/lang/php81/php-8.1.1/ext/standard/tests/file/
H A Dstat_variation4-win32.phpt36 $new_stat = stat($old_dirname);
40 var_dump( compare_self_stat($new_stat) );
42 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
55 $new_stat = stat($old_filename);
58 var_dump( compare_self_stat($new_stat) );
60 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
H A Dstat_variation6-win32.phpt36 $new_stat = stat($filename);
39 var_dump( compare_self_stat($new_stat) );
42 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
53 $new_stat = stat($dirname);
56 var_dump( compare_self_stat($new_stat) );
59 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
/dports/www/mod_php81/php-8.1.1/ext/standard/tests/file/
H A Dstat_variation4-win32.phpt36 $new_stat = stat($old_dirname);
40 var_dump( compare_self_stat($new_stat) );
42 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
55 $new_stat = stat($old_filename);
58 var_dump( compare_self_stat($new_stat) );
60 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
H A Dstat_variation6-win32.phpt36 $new_stat = stat($filename);
39 var_dump( compare_self_stat($new_stat) );
42 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
53 $new_stat = stat($dirname);
56 var_dump( compare_self_stat($new_stat) );
59 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
/dports/www/mod_php80/php-8.0.15/ext/standard/tests/file/
H A Dstat_variation4-win32.phpt36 $new_stat = stat($old_dirname);
40 var_dump( compare_self_stat($new_stat) );
42 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
55 $new_stat = stat($old_filename);
58 var_dump( compare_self_stat($new_stat) );
60 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
H A Dstat_variation6-win32.phpt36 $new_stat = stat($filename);
39 var_dump( compare_self_stat($new_stat) );
42 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
53 $new_stat = stat($dirname);
56 var_dump( compare_self_stat($new_stat) );
59 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
/dports/lang/php74/php-7.4.27/ext/standard/tests/file/
H A Dstat_variation4-win32.phpt41 $new_stat = stat($old_dirname);
45 var_dump( compare_self_stat($new_stat) );
47 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
60 $new_stat = stat($old_filename);
63 var_dump( compare_self_stat($new_stat) );
65 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
H A Dstat_variation6-win32.phpt40 $new_stat = stat($filename);
43 var_dump( compare_self_stat($new_stat) );
46 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
57 $new_stat = stat($dirname);
60 var_dump( compare_self_stat($new_stat) );
63 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
/dports/lang/php73/php-7.3.33/ext/standard/tests/file/
H A Dstat_variation4-win32.phpt41 $new_stat = stat($old_dirname);
45 var_dump( compare_self_stat($new_stat) );
47 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "=") );
60 $new_stat = stat($old_filename);
63 var_dump( compare_self_stat($new_stat) );
65 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "=") );
H A Dstat_variation6-win32.phpt40 $new_stat = stat($filename);
43 var_dump( compare_self_stat($new_stat) );
46 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "=") );
57 $new_stat = stat($dirname);
60 var_dump( compare_self_stat($new_stat) );
63 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "=") );
/dports/www/mod_php73/php-7.3.33/ext/standard/tests/file/
H A Dstat_variation4-win32.phpt41 $new_stat = stat($old_dirname);
45 var_dump( compare_self_stat($new_stat) );
47 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "=") );
60 $new_stat = stat($old_filename);
63 var_dump( compare_self_stat($new_stat) );
65 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "=") );
H A Dstat_variation6-win32.phpt40 $new_stat = stat($filename);
43 var_dump( compare_self_stat($new_stat) );
46 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "=") );
57 $new_stat = stat($dirname);
60 var_dump( compare_self_stat($new_stat) );
63 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "=") );
/dports/www/mod_php74/php-7.4.27/ext/standard/tests/file/
H A Dstat_variation4-win32.phpt41 $new_stat = stat($old_dirname);
45 var_dump( compare_self_stat($new_stat) );
47 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
60 $new_stat = stat($old_filename);
63 var_dump( compare_self_stat($new_stat) );
65 var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys, "==") );
H A Dstat_variation6-win32.phpt40 $new_stat = stat($filename);
43 var_dump( compare_self_stat($new_stat) );
46 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );
57 $new_stat = stat($dirname);
60 var_dump( compare_self_stat($new_stat) );
63 var_dump( compare_stats($old_stat, $new_stat, $affected_members, "==") );

12345678910>>...17