Home
last modified time | relevance | path

Searched refs:query (Results 1 – 25 of 119) sorted by relevance

12345

/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPV1SSrvMsg.java233 query + "''"); in initialize()
312 query = query.trim(); in convertQuery()
321 if (!(query.startsWith("(") && query.endsWith(")"))) { in convertQuery()
325 query = rewriteQueryJoin(query); in convertQuery()
331 query = rewriteQuery(query); in convertQuery()
356 new Object[] {query}); in rewriteQueryJoin()
370 new Object[] {query}); in rewriteQueryJoin()
389 new Object[] {query}); in rewriteQueryJoin()
444 new Object[] {query}); in rewriteQuery()
529 new Object[] {query}); in parseInternal()
[all …]
H A DCSrvMsg.java116 String query) in CSrvMsg() argument
119 this.initialize(locale, serviceType, scopes, query); in CSrvMsg()
129 String query) in initialize() argument
168 hdr.putString(query, baos); in initialize()
H A DSLPTemplateRegistry.java402 String query = "(" + SERVICE_ATTR_ID + "=" + serviceType + ")"; in findVersionedURL() local
405 query = query + "(" + VERSION_ATTR_ID + "=" + version + ")"; in findVersionedURL()
409 query = "(&" + query + ")"; in findVersionedURL()
430 query); in findVersionedURL()
H A DUARequester.java158 findServices(ServiceType type, Vector scopes, String query) in findServices() argument
163 Assert.nonNullParameter(query, "query"); in findServices()
169 query, in findServices()
453 String query = ""; in createMessages() local
456 query = (String)t2; in createMessages()
460 multiMsg = new CSrvMsg(locale, type, multiCastScopes, query); in createMessages()
H A DSSrvMsg.java52 String query = ""; // the query field in SSrvMsg
129 query = buf.toString(); in initialize()
141 query + "''\n" + in initialize()
/illumos-gate/usr/src/cmd/fm/modules/common/fabric-xlate/
H A Dfx_subr.c274 char *query; in fab_hc2dev() local
358 char query[500]; in fab_find_rppath_by_df() local
380 (void) snprintf(query, sizeof (query), "//propval[" in fab_find_rppath_by_df()
402 char query[500]; in fab_find_rppath_by_devbdf() local
429 (void) snprintf(query, sizeof (query), "//propval[" in fab_find_rppath_by_devbdf()
514 char query[500]; in fab_find_rppath_by_devpath() local
524 (void) snprintf(query, sizeof (query), "//propval" in fab_find_rppath_by_devpath()
608 (void) snprintf(query, sizeof (query), "//propval[" in fab_find_bdf()
645 (void) snprintf(query, sizeof (query), "//propval[" in fab_find_addr()
876 (void) snprintf(query, sizeof (query), "//propval[" in fab_get_rpdev()
[all …]
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_da_cache.c83 const char *query; member
100 char *slp_find_das_cached(const char *query) { in slp_find_das_cached() argument
112 ce->query = query; in slp_find_das_cached()
147 void slp_put_das_cached(const char *query, const char *reply, in slp_put_das_cached() argument
164 if (!(ce->query = strdup(query))) { in slp_put_das_cached()
171 free((void *) (ce->query)); in slp_put_das_cached()
187 free((void *) ((*ce2)->query)); in slp_put_das_cached()
200 return (strcasecmp(e1->query, e2->query)); in compare_entries()
209 free((void *) (ce->query)); in free_cache_entry()
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_nisdbquery.c819 newq = realloc(query, ntq * sizeof (query[0])); in createNisPlusEntry()
833 query = newq; in createNisPlusEntry()
848 query[(nq*i)+j] = cloneQuery(query[j], in createNisPlusEntry()
876 (void) memset(query, 0, ntq * sizeof (query[0])); in createNisPlusEntry()
879 query[i] = am(myself, sizeof (*query[i])); in createNisPlusEntry()
1023 sfree(query); in createNisPlusEntry()
1024 query = 0; in createNisPlusEntry()
1028 if (query != 0) { in createNisPlusEntry()
1030 query = filterQuery(t, query, qin, &attr, &nq); in createNisPlusEntry()
1032 query = filterQuery(0, query, qin, &attr, &nq); in createNisPlusEntry()
[all …]
H A Dnis_db.cc358 if (query) delete query; in db_first_entry()
422 db_query *query; in __db_list_entries() local
430 delete query; in __db_list_entries()
505 db_query *query; in dbFindObject() local
557 if (query == 0) { in dbFindObject()
570 delete query; in dbFindObject()
774 db_query *query; in dbTouchObj() local
813 if (query == 0) { in dbTouchObj()
823 delete query; in dbTouchObj()
1614 delete query; in db_add_entry_x()
[all …]
H A Ddb_log_entry_c.x55 db_query *query; /* query supplied with action (if any) */ member
69 % db_query *query; /* query supplied with action (if any) */
76 % db_log_entry() { query = NULL, object = NULL; next = NULL; }
94 % db_query *get_query() { return( query ); }
H A Ddb.cc168 db::exec_action(db_action action, db_query *query, in exec_action() argument
195 res->status = internal_db.add(query, content); in exec_action()
199 res->status = internal_db.remove(query); in exec_action()
203 if (query == NULL) { in exec_action()
208 res->status = internal_db.first(query, in exec_action()
327 db_log_entry le(action, v, query, content); in log_action()
376 res = exec_action(action, query, content, NULL); in log_action()
392 db::execute(db_action action, db_query *query, in execute() argument
404 res = exec_action(action, query, content, previous); in execute()
412 res = exec_action(DB_ADD, query, content, previous); in execute()
[all …]
H A Ddb_log_entry.cc46 query = q; in db_log_entry()
77 if (query != NULL) in print()
78 query->print(); in print()
/illumos-gate/usr/src/lib/print/libpapi-common/common/
H A Duri.c125 char *query, *fragment; in uri_from_string() local
127 query = strrchr(name, '?'); in uri_from_string()
128 if ((query != NULL) && (*query != '\0')) { in uri_from_string()
129 u->query = strdup(query + 1); in uri_from_string()
130 end = query; in uri_from_string()
198 (uri->query ? "?" : ""), in uri_to_string()
199 (uri->query ? uri->query : "")); in uri_to_string()
228 if (uri->query != NULL) in uri_free()
229 free(uri->query); in uri_free()
263 if (uri->query != NULL) in uri_dump()
[all …]
/illumos-gate/usr/src/cmd/print/selector/
H A Dprint-service271 my ($import_path, $export_path, $svc_name, $query, $migrate) = ();
273 my $res = GetOptions('q|query' => \$query, 's|set=s' => \$service,
280 !defined($query) && !defined($service) && !defined($migrate)) {
283 !defined($query) && !defined($service) && !defined($migrate)) {
286 defined($query) && !defined($service) && !defined($migrate)) {
289 !defined($query) && defined($service)) {
/illumos-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_debug.h23 # define DprintQ(cond, args, query, size) /*empty*/ argument
28 # define DprintQ(cond, args, query, size) if (cond) {\ argument
30 res_pquery(statp, query, size, stdout);\
/illumos-gate/usr/src/lib/brand/shared/zone/
H A DMakefile26 PROG=query
27 SHARED= common.ksh query uninstall.ksh
35 POFILES= common.po query.po uninstall.po
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dprogress.test49 # Test that the query is abandoned when the progress callback returns non-zero
59 # Test that the query is rolled back when the progress callback returns
74 # Now set up the progress callback to abandon the query after the number of
77 # callback abandons the query.
88 # progress query abandons a query.
/illumos-gate/usr/src/uts/sun4/os/
H A Dlgrpplat.c198 lgrp_plat_mem_size(lgrp_handle_t plathand, lgrp_mem_query_t query) in lgrp_plat_mem_size() argument
208 return (lgrp_plat_mem_size_default(plathand, query)); in lgrp_plat_mem_size()
213 switch (query) { in lgrp_plat_mem_size()
271 lgrp_plat_mem_size_default(lgrp_handle_t lgrphand, lgrp_mem_query_t query) in lgrp_plat_mem_size_default() argument
278 switch (query) { in lgrp_plat_mem_size_default()
/illumos-gate/usr/src/uts/common/io/
H A Ddevpool.c210 pool_query_t query; in pool_ioctl() local
284 query.pq_io_bufsize = query32.pq_io_bufsize; in pool_ioctl()
285 query.pq_io_buf = (char *)(uintptr_t)query32.pq_io_buf; in pool_ioctl()
290 if (ddi_copyin((void *)arg, &query, in pool_ioctl()
312 } else if (query.pq_io_bufsize != 0) { in pool_ioctl()
313 kbufsz = query.pq_io_bufsize; in pool_ioctl()
335 query.pq_io_bufsize = size; in pool_ioctl()
336 if (ddi_copyout(&query, (void *)arg, in pool_ioctl()
340 if (ret == 0 && query.pq_io_buf != NULL && in pool_ioctl()
341 ddi_copyout(kbuf, query.pq_io_buf, size, mode) != 0) in pool_ioctl()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Dwhois.c256 whois(const char *query, const char *hostname, int flags) in whois() argument
289 (void) fprintf(sfo, "-T dn,ace -C US-ASCII %s\r\n", query); in whois()
291 (void) fprintf(sfo, "--show-handles %s\r\n", query); in whois()
293 (void) fprintf(sfo, "%s\r\n", query); in whois()
340 whois(query, nhost, 0); in whois()
/illumos-gate/usr/src/cmd/sgs/error/common/
H A Derrormain.c50 boolean query = FALSE; /* query the operator if touch files */ variable
132 query = TRUE; in main()
182 if (query) { in main()
245 if (query) { in forkvi()
/illumos-gate/usr/src/cmd/sendmail/util/
H A Deditmap.c80 bool query = false; local
148 query = true;
186 (query && argc != 3) ||
273 if (query)
320 if (query)
/illumos-gate/usr/src/uts/intel/io/vmm/
H A Dvmm_sol_ept.c125 ept_query(uint64_t *entry, vmm_gpt_query_t query) in ept_query() argument
130 switch (query) { in ept_query()
136 panic("unrecognized query: %d", query); in ept_query()
H A Dvmm_sol_rvi.c143 rvi_query(uint64_t *entry, vmm_gpt_query_t query) in rvi_query() argument
148 switch (query) { in rvi_query()
154 panic("unrecognized query: %d", query); in rvi_query()
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dcheckpw.c503 char query[8192]; in saslauthd_verify_password() local
504 char *query_end = query; in saslauthd_verify_password()
542 if (u_len + p_len + s_len + r_len + 30 > (unsigned short) sizeof(query)) { in saslauthd_verify_password()
577 arg.data_ptr = query; in saslauthd_verify_password()
578 arg.data_size = query_end - query; in saslauthd_verify_password()
619 iov[0].iov_len = query_end - query; in saslauthd_verify_password()
620 iov[0].iov_base = query; in saslauthd_verify_password()

12345