Home
last modified time | relevance | path

Searched refs:scan_paths (Results 1 – 4 of 4) sorted by relevance

/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/storage/netapp/
H A Dna_ontap_vscan_on_demand_task.py171 scan_paths=dict(required=False, type="list"),
221 scan_paths = netapp_utils.zapi.NaElement("scan-paths")
223 scan_paths.add_new_child('string', scan_path)
224 demand_task_obj.add_child_elem(scan_paths)
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/netapp/ontap/plugins/modules/
H A Dna_ontap_vscan_on_demand_task.py184 scan_paths=dict(required=False, type='list', elements='str'),
234 scan_paths = netapp_utils.zapi.NaElement("scan-paths")
236 scan_paths.add_new_child('string', scan_path)
237 demand_task_obj.add_child_elem(scan_paths)
/dports/multimedia/gstreamer1/gstreamer-1.16.2/gst/
H A Dgstplugin.c1709 GQueue scan_paths = G_QUEUE_INIT; in gst_plugin_ext_dep_get_stat_hash() local
1720 gst_plugin_ext_dep_extract_env_vars_paths (plugin, dep, &scan_paths); in gst_plugin_ext_dep_get_stat_hash()
1722 if (g_queue_is_empty (&scan_paths) || !paths_are_default_only) { in gst_plugin_ext_dep_get_stat_hash()
1745 if (!g_queue_find_custom (&scan_paths, full_path, (GCompareFunc) strcmp)) { in gst_plugin_ext_dep_get_stat_hash()
1747 g_queue_push_tail (&scan_paths, full_path); in gst_plugin_ext_dep_get_stat_hash()
1755 while ((path = g_queue_pop_head (&scan_paths))) { in gst_plugin_ext_dep_get_stat_hash()
/dports/sysutils/rmlint/rmlint-2.10.1-11-ga726d0cb/gui/shredder/views/
H A Dlocations.py580 self.scan_paths(untagged, tagged)
585 self.scan_paths([row.path], [])
587 def scan_paths(self, untagged, tagged): member in LocationView