Searched refs:query (Results 76 - 89 of 89) sorted by relevance

1234

/haiku/src/add-ons/kernel/file_systems/layers/log_overlay/
H A Dlog_overlay.cpp988 overlay_open_query(fs_volume *volume, const char *query, uint32 flags, argument
991 DO_VOLUME_LOG("open_query query: \"%s\"; flags: %#" B_PRIx32 "; port: %"
992 B_PRId32 "; token: %" B_PRIu32 "\n", query, flags, port, token);
993 OVERLAY_VOLUME_CALL(open_query, query, flags, port, token, cookie)
/haiku/src/tools/fs_shell/
H A Dfssh.cpp1198 fprintf(stderr, "Usage: %s <query string>\n", argv[0]);
1202 const char* query = argv[1]; local
1209 // open query
1210 int fd = _kern_open_query(volumeID, query, strlen(query), 0, -1, -1);
1212 fprintf(stderr, "Error: Failed to open query: %s\n", fssh_strerror(fd));
1234 fprintf(stderr, "Error: reading query failed: %s\n",
1238 // close query
1241 fprintf(stderr, "Error: Closing query (fd: %d) failed: %s\n",
1360 command_query, "query", "quer
[all...]
H A Dvfs.cpp4456 /*! ToDo: the query FS API is still the pretty much the same as in R5.
4459 For example, query parsing should be moved into the kernel.
4462 query_open(fssh_dev_t device, const char *query, uint32_t flags, argument
4468 FUNCTION(("query_open(device = %ld, query = \"%s\", kernel = %d)\n", device, query, kernel));
4479 status = FS_MOUNT_CALL(mount, open_query, query, flags, port, token, &cookie);
5740 _kern_open_query(fssh_dev_t device, const char *query, fssh_size_t queryLength, argument
5743 return query_open(device, query, flags, port, token, false);
/haiku/headers/private/file_systems/
H A DQueryParser.h26 // of the code, just read the beginning of the query constructor.
224 the query is run, there are some dependencies that are produced while
227 So you could run more than one query on the same volume, but it might return
388 // Since the equation is the integral part of any query, we're just parsing
615 QUERY_FATAL("query value conversion to 0x%x requested!\n",
719 // first, check if we are matching for a live query and use that value
804 // if we should query attributes without an index, we can just proceed here
920 // query will do something similar (and we don't have
1371 QUERY_INFORM("Could not parse query \"%s\", stopped at: \"%s\"\n",
1378 Query<QueryPolicy>* query
[all...]
/haiku/headers/private/kernel/
H A Dvfs.h238 int _user_open_query(dev_t device, const char *query,
/haiku/headers/os/drivers/
H A Dfs_interface.h101 /* query operations */
102 status_t (*open_query)(fs_volume* volume, const char* query, uint32 flags,
/haiku/headers/private/fs_shell/
H A Dfssh_fs_interface.h105 /* query operations */
106 fssh_status_t (*open_query)(fssh_fs_volume *volume, const char *query,
/haiku/src/add-ons/kernel/file_systems/layers/attribute_overlay/
H A Dattribute_overlay.cpp1884 overlay_open_query(fs_volume *volume, const char *query, uint32 flags, argument
1887 OVERLAY_VOLUME_CALL(open_query, query, flags, port, token, _cookie)
/haiku/headers/private/system/
H A Dsyscalls.h326 extern int _kern_open_query(dev_t device, const char *query,
/haiku/src/system/kernel/fs/
H A Dvfs.cpp7222 /*! TODO: the query FS API is still the pretty much the same as in R5.
7225 For example, query parsing should be moved into the kernel.
7228 query_open(dev_t device, const char* query, uint32 flags, port_id port, argument
7234 FUNCTION(("query_open(device = %" B_PRId32 ", query = \"%s\", kernel = %d)\n",
7235 device, query, kernel));
7246 status = FS_MOUNT_CALL(mount, open_query, query, flags, port, token,
10065 BStackOrHeapArray<char, 128> query(queryLength + 1);
10066 if (!query.IsValid())
10069 if (user_strlcpy(query, userQuery, queryLength + 1) < B_OK)
10072 return query_open(device, query, flag
[all...]
/haiku/src/add-ons/kernel/file_systems/layers/write_overlay/
H A Dwrite_overlay.cpp2447 overlay_open_query(fs_volume *volume, const char *query, uint32 flags, argument
2450 OVERLAY_VOLUME_CALL(open_query, query, flags, port, token, _cookie)
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_attach.c65 HAL_CAL_QUERY query);
3325 HAL_CAL_QUERY query)
3343 switch (query) {
/haiku/src/kits/tracker/
H A DContainerWindow.cpp2040 // it is ok to add a global Edit query shortcut here, PoseView will
2041 // filter out cases where selected pose is not a query
2197 // add Edit query if appropriate
2202 // if any queries selected, add an edit query menu item
2217 // if the view is a query pose view, add edit query menu item
2223 // add edit query item after Open
2227 BMenuItem* query = new BMenuItem(B_TRANSLATE("Edit query"), local
2229 item->Menu()->AddItem(query, itemInde
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi4965/dev/iwn/
H A Dif_iwnreg.h1679 uint32_t query; member in struct:iwn_tx_stats

Completed in 152 milliseconds

1234