Lines Matching refs:query
30 * Qemu query
33 /* Encapsulates a query to the emulator.
36 * 'frame' query where reply is a framebuffer).
37 * Each query is formatted as such:
39 * "<query name>[ <parameters>]",
41 * where <query name> is a string representing query name, and <parameters> are
42 * optional parameters for the query. If parameters are present, they must be
43 * separated from the query name with a single space, and they must be formatted
55 * There are certain restrictions on strings used in the query:
59 * Emulator replies to each query in two chunks:
66 * query:
70 * the query result, there is a ':' character separating them. If payload carries
80 /* Constructs and initializes QemuQuery instance for a query.
82 * query_string - Query string. This constructor can also be used to
83 * construct a query that doesn't have parameters. In this case query
88 /* Constructs and initializes QemuQuery instance for a query with parameters.
90 * query_name - Query name.
91 * query_param - Query parameters. Can be NULL.
102 /* Creates new query.
103 * Note: this method will reset this instance prior to creating a new query
104 * in order to discard possible "leftovers" from the previous query.
106 * query_name - Query name.
107 * query_param - Query parameters. Can be NULL.
113 /* Completes the query after a reply from the emulator.
114 * This method will parse the reply buffer, and calculate the final query
118 * status - Query delivery status. This status doesn't necessarily reflects
119 * the final query status (which is defined by 'ok'/'ko' prefix in the
120 * reply buffer). This status simply states whether or not the query has
122 * this status indicates a failure, it means that the entire query has
128 * check the final query status.
132 /* Resets the query from a previous use. */
135 /* Checks if query has succeeded.
143 /* Gets final completion status of the query.
147 * NO_ERROR if query has succeeded, or an appropriate error status on query
167 /* Query string. */
169 /* Query delivery status. */
234 * from the factory service using 'list' query.
267 /* Sends a query, and receives a response from the service.
269 * query - Query to send to the service. When this method returns, the query
273 * status returned here is not the final query status. Use isQuerySucceeded(),
274 * or getCompletionStatus() method on the query object to see if it has
276 * query has failed, and there is no guarantee that its data members are
280 virtual status_t doQuery(QemuQuery* query);
425 /* Query frame(s). */