Lines Matching refs:tree_view
752 GtkWidget *frame, *box, *tree_view = NULL; in gfio_show_io_depths() local
771 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model)); in gfio_show_io_depths()
772 gtk_widget_set_can_focus(tree_view, FALSE); in gfio_show_io_depths()
774 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE, in gfio_show_io_depths()
777 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); in gfio_show_io_depths()
781 tree_view_column(tree_view, i, labels[i], ALIGN_RIGHT | UNSORTABLE); in gfio_show_io_depths()
787 gtk_box_pack_start(GTK_BOX(box), tree_view, TRUE, TRUE, 3); in gfio_show_io_depths()
831 GtkWidget *tree_view; in gfio_output_lat_buckets() local
847 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model)); in gfio_output_lat_buckets()
848 gtk_widget_set_can_focus(tree_view, FALSE); in gfio_output_lat_buckets()
850 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE, in gfio_output_lat_buckets()
853 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); in gfio_output_lat_buckets()
857 tree_view_column(tree_view, i, labels[i], ALIGN_RIGHT | UNSORTABLE); in gfio_output_lat_buckets()
872 return tree_view; in gfio_output_lat_buckets()
940 GtkWidget *frame, *tree_view, *hbox, *completion_vbox, *drawing_area; in gfio_show_latency_buckets() local
965 tree_view = gfio_output_lat_buckets(&io_u_lat[start], &ranges[start], end - start + 1); in gfio_show_latency_buckets()
983 gtk_box_pack_start(GTK_BOX(hbox), tree_view, TRUE, TRUE, 3); in gfio_show_latency_buckets()
1029 GtkWidget *tree_view; in gfio_output_clat_percentiles() local
1040 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model)); in gfio_output_clat_percentiles()
1041 gtk_widget_set_can_focus(tree_view, FALSE); in gfio_output_clat_percentiles()
1043 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE, in gfio_output_clat_percentiles()
1046 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); in gfio_output_clat_percentiles()
1053 tree_view_column(tree_view, i, fbuf, ALIGN_RIGHT | UNSORTABLE); in gfio_output_clat_percentiles()
1064 return tree_view; in gfio_output_clat_percentiles()
1101 GtkWidget *tree_view, *frame, *hbox, *drawing_area, *completion_vbox; in gfio_show_clat_percentiles() local
1122 tree_view = gfio_output_clat_percentiles(ovals, plist, len, base, scale_down); in gfio_show_clat_percentiles()
1139 gtk_box_pack_start(GTK_BOX(hbox), tree_view, TRUE, TRUE, 3); in gfio_show_clat_percentiles()