Searched refs:query (Results 1 - 25 of 89) sorted by path

1234

/haiku/3rdparty/mmu_man/scripts/
H A Dbebook9 $(query -a '(BEOS:APP_SIG=="application/x-vnd.STertois.BeHappy")' | head -1) &
H A Dbman9 $(query -a '(BEOS:APP_SIG=="application/x-vnd.STertois.BeHappy")' | head -1) &
/haiku/docs/apps/mail/Mass Mailing Tips/
H A DValidatePeopleEmails.sh9 query -a 'META:email==*' | xargs catattr META:email >/tmp/PeopleListTemp
/haiku/headers/os/kernel/
H A Dfs_query.h13 /* Flags for fs_open_[live_]query() */
28 extern DIR *fs_open_query(dev_t device, const char *query, uint32 flags);
29 extern DIR *fs_open_live_query(dev_t device, const char *query,
/haiku/headers/private/fs_shell/
H A Dfssh_fs_query.h13 /* Flags for fs_open_[live_]query() */
29 const char *query, uint32_t flags);
31 const char *query, uint32_t flags,
/haiku/headers/private/shared/
H A DQueryFile.h20 BQueryFile(BQuery& query);
28 status_t SetTo(BQuery& query);
/haiku/headers/private/userlandfs/legacy/
H A Dfsproto.h159 typedef int op_open_query(void *ns, const char *query, ulong flags,
/haiku/src/add-ons/kernel/debugger/qrencode/
H A Dmodule.cpp86 encode_url(const char* query, const char* data, int encodeLength, argument
94 strlcat(sEncodeBuffer, query, encodeLength + 1);
/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/add-ons/kernel/file_systems/bfs/
H A DVolume.h139 void AddQuery(Query* query);
140 void RemoveQuery(Query* query);
/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/add-ons/kernel/file_systems/netfs/server/
H A DNodeHandle.h139 void AddQuery(Query* query);
140 void RemoveQuery(Query* query);
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DVolume.h81 // query support -- volume must be write-locked
82 void AddQuery(Query* query);
83 void RemoveQuery(Query* query);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A Dfs_interface.h175 typedef int beos_op_open_query(void *ns, const char *query, ulong flags,
/haiku/src/add-ons/kernel/network/ppp/pppoe/
H A Dpppoe.cpp54 SendQueryPacket(pppoe_query *query, DiscoveryPacket& discovery) argument
86 send_data_with_timeout(query->receiver, PPPoE_QUERY_REPORT, data,
197 pppoe_query *query; local
208 query = sQueries->ItemAt(index);
210 if (query) {// && query->ethernetIfnet == sourceIfnet) {
221 && *((uint32*)hostTag->data) == query->hostUniq) {
222 SendQueryPacket(query, discovery);
335 pppoe_query query; local
336 query
[all...]
/haiku/src/apps/mail/
H A DMailSupport.cpp129 BQuery query; local
130 query.SetVolume(&volume);
131 query.PushAttr(attribute);
132 query.PushString("*");
133 query.PushOp(B_EQ);
134 query.Fetch();
138 while (query.GetNextEntry(&entry) == B_OK) {
H A DPeople.cpp106 PersonList::PersonList(QueryList& query) argument
108 fQueryList(query),
149 GroupList::GroupList(QueryList& query) argument
151 fQueryList(query)
H A DPeople.h47 PersonList(QueryList& query);
71 GroupList(QueryList& query);
H A DQueryList.cpp24 sQueryLooper = new BLooper("query looper");
195 BQuery* query = new BQuery(); local
196 if (query->SetVolume(&volume) != B_OK
197 || query->SetPredicate(predicate) != B_OK
198 || query->SetTarget(this) != B_OK) {
199 delete query;
203 fQueries.push_back(query);
205 fQueryQueue.push_back(query);
208 thread_id thread = spawn_thread(_FetchQuery, "query fetcher",
231 BQuery* query local
[all...]
H A DQueryMenu.cpp180 BQuery *query = new BQuery(); local
181 if (query->SetVolume(&volume) != B_OK) {
182 delete query;
185 if (query->SetPredicate(expr) != B_OK) {
186 delete query;
189 if (query->SetTarget(mercury) != B_OK) {
190 delete query;
194 fQueries.push_back(query);
215 // Force query thread to exit if still running
225 thread = spawn_thread(query_thread, "query men
259 BQuery *query = fQueries[i]; local
[all...]
/haiku/src/apps/musiccollection/
H A DQueryMonitor.cpp54 QueryReader::AddQuery(BQuery* query) argument
56 query->SetTarget(fTarget);
57 query->Fetch();
58 return fQueries.AddItem(query);
81 BQuery* query = fQueries.ItemAt(0); local
82 if (query == NULL)
84 if (query->GetNextRef(&entry) != B_OK) {
86 fLiveQueries.AddItem(query);
H A DQueryMonitor.h19 /*! Handle live query messages, query reader messages, and node monitor messages
37 bool AddQuery(BQuery* query);
/haiku/src/bin/
H A Dquery.cpp47 " -a\t\tperform the query on all volumes\n"
48 " -v <file>\tperform the query on just one volume; <file> can be any\n"
59 BQuery query; local
60 query.SetVolume(&volume);
63 query.SetPredicate("BEOS:APP_SIG=*");
65 query.SetPredicate(predicate);
67 status_t status = query.Fetch();
73 query.SetPredicate(string.String());
74 status = query.Fetch();
77 fprintf(stderr, "%s: bad query expressio
[all...]
/haiku/src/bin/unzip/
H A Dextract.c837 int renamed, query; variable
1041 query = FALSE;
1194 query = TRUE;
1212 query = TRUE;
1216 if (query) {
1286 } /* end if (query) */
/haiku/src/kits/shared/
H A DQueryFile.cpp19 // TODO: live query support?
44 BQueryFile::BQueryFile(BQuery& query) argument
46 SetTo(query);
108 // add all volumes to query
146 BQueryFile::SetTo(BQuery& query) argument
151 query.GetPredicate(&predicate);
157 return fStatus = AddVolume(query.TargetDevice());

Completed in 159 milliseconds

1234