Searched refs:driver (Results 1 - 25 of 143) sorted by relevance

123456

/macosx-10.10/apr-32/apr-util/apr-util/test/
H A Dtestdbd.c35 const apr_dbd_driver_t* driver, const char* sql)
40 rv = apr_dbd_query(driver, handle, &nrows, sql);
46 const apr_dbd_driver_t* driver)
53 test_statement(tc, handle, driver, sql);
57 const apr_dbd_driver_t* driver)
60 test_statement(tc, handle, driver, sql);
64 const apr_dbd_driver_t* driver)
67 test_statement(tc, handle, driver, sql);
72 const apr_dbd_driver_t* driver, int count)
83 rv = apr_dbd_query(driver, handl
34 test_statement(abts_case *tc, apr_dbd_t* handle, const apr_dbd_driver_t* driver, const char* sql) argument
45 create_table(abts_case *tc, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
56 drop_table(abts_case *tc, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
63 delete_rows(abts_case *tc, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
71 insert_data(abts_case *tc, apr_dbd_t* handle, const apr_dbd_driver_t* driver, int count) argument
89 select_rows(abts_case *tc, apr_dbd_t* handle, const apr_dbd_driver_t* driver, int count) argument
139 test_escape(abts_case *tc, apr_dbd_t *handle, const apr_dbd_driver_t *driver) argument
147 test_dbd_generic(abts_case *tc, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
179 const apr_dbd_driver_t* driver = NULL; local
207 const apr_dbd_driver_t* driver = NULL; local
[all...]
H A Ddbd.c25 rv = func(pool, sql, driver); \
35 const apr_dbd_driver_t* driver)
43 rv = apr_dbd_query(driver, handle, &nrows, statement);
47 const apr_dbd_driver_t* driver)
52 rv = apr_dbd_query(driver, handle, &nrows, statement);
56 const apr_dbd_driver_t* driver)
69 rv = apr_dbd_query(driver, handle, &nrows, statement);
82 rv = apr_dbd_query(driver, handle, &nrows, statement);
94 const apr_dbd_driver_t* driver)
99 rv = apr_dbd_query(driver, handl
34 create_table(apr_pool_t* pool, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
46 drop_table(apr_pool_t* pool, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
55 insert_rows(apr_pool_t* pool, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
93 invalid_op(apr_pool_t* pool, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
107 select_sequential(apr_pool_t* pool, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
139 select_random(apr_pool_t* pool, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
195 test_transactions(apr_pool_t* pool, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
268 test_pselect(apr_pool_t* pool, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
312 test_pquery(apr_pool_t* pool, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
348 const apr_dbd_driver_t *driver = NULL; local
[all...]
H A Dtestcrypto.c35 const apr_crypto_driver_t *driver = NULL; local
42 rv = apr_crypto_get_driver(&driver, name, params, &err, pool);
48 ABTS_NOT_IMPL(tc, (char *)driver);
52 ABTS_ASSERT(tc, "apr_crypto_get_driver returned NULL", driver != NULL);
53 if (!driver || rv) {
57 return driver;
79 const apr_crypto_driver_t *driver)
84 if (!driver) {
89 apr_crypto_make(&f, driver, "engine=openssl", pool);
97 const apr_crypto_driver_t *driver, cons
78 make(abts_case *tc, apr_pool_t *pool, const apr_crypto_driver_t *driver) argument
96 passphrase(abts_case *tc, apr_pool_t *pool, const apr_crypto_driver_t *driver, const apr_crypto_t *f, apr_crypto_block_key_type_e type, apr_crypto_block_key_mode_e mode, int doPad, const char *description) argument
145 encrypt_block(abts_case *tc, apr_pool_t *pool, const apr_crypto_driver_t *driver, const apr_crypto_t *f, const apr_crypto_key_t *key, const unsigned char *in, const apr_size_t inlen, unsigned char **cipherText, apr_size_t *cipherTextLen, const unsigned char **iv, apr_size_t *blockSize, const char *description) argument
225 decrypt_block(abts_case *tc, apr_pool_t *pool, const apr_crypto_driver_t *driver, const apr_crypto_t *f, const apr_crypto_key_t *key, unsigned char *cipherText, apr_size_t cipherTextLen, unsigned char **plainText, apr_size_t *plainTextLen, const unsigned char *iv, apr_size_t *blockSize, const char *description) argument
686 const apr_crypto_driver_t *driver; local
729 const apr_crypto_driver_t *driver; local
772 const apr_crypto_driver_t *driver; local
805 const apr_crypto_driver_t *driver; local
[all...]
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Dmain.c96 #include <driver.h> /* Main driver defs */
/macosx-10.10/bind9-45.101/bind9/contrib/sdb/tcl/
H A Dtcldb.c21 * A simple database driver that calls a Tcl procedure to define
66 tcldb_driver_t *driver = isc_mem_get(mctx, sizeof(tcldb_driver_t)); local
67 if (driver == NULL)
69 driver->mctx = mctx;
70 driver->interp = Tcl_CreateInterp();
72 tclres = Tcl_EvalFile(driver->interp, (char *) "lookup.tcl");
78 driver->interp->result);
82 *driverp = driver;
86 isc_mem_put(mctx, driver, sizeof(tcldb_driver_t));
93 tcldb_driver_t *driver local
113 tcldb_driver_t *driver = (tcldb_driver_t *) dbdata; local
183 tcldb_driver_t *driver = (tcldb_driver_t *) driverdata; local
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/dbd/
H A Dapr_dbd.c69 #define DRIVER_LOAD(name,driver,pool) \
71 extern const apr_dbd_driver_t driver; \
72 apr_hash_set(drivers,name,APR_HASH_KEY_STRING,&driver); \
73 if (driver.init) { \
74 driver.init(pool); \
157 const apr_dbd_driver_t **driver)
172 *driver = apr_hash_get(drivers, name, APR_HASH_KEY_STRING);
173 if (*driver) {
181 /* The driver DSO must have exactly the same lifetime as the
197 *driver
243 apr_dbd_transaction_start(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, apr_dbd_transaction_t **trans) argument
256 apr_dbd_transaction_end(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_transaction_t *trans) argument
264 apr_dbd_transaction_mode_get(const apr_dbd_driver_t *driver, apr_dbd_transaction_t *trans) argument
270 apr_dbd_transaction_mode_set(const apr_dbd_driver_t *driver, apr_dbd_transaction_t *trans, int mode) argument
283 apr_dbd_name(const apr_dbd_driver_t *driver) argument
288 apr_dbd_native_handle(const apr_dbd_driver_t *driver, apr_dbd_t *handle) argument
294 apr_dbd_check_conn(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle) argument
301 apr_dbd_set_dbname(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, const char *name) argument
308 apr_dbd_query(const apr_dbd_driver_t *driver, apr_dbd_t *handle, int *nrows, const char *statement) argument
315 apr_dbd_select(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, apr_dbd_results_t **res, const char *statement, int random) argument
323 apr_dbd_num_cols(const apr_dbd_driver_t *driver, apr_dbd_results_t *res) argument
329 apr_dbd_num_tuples(const apr_dbd_driver_t *driver, apr_dbd_results_t *res) argument
335 apr_dbd_get_row(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_results_t *res, apr_dbd_row_t **row, int rownum) argument
343 apr_dbd_get_entry(const apr_dbd_driver_t *driver, apr_dbd_row_t *row, int col) argument
349 apr_dbd_get_name(const apr_dbd_driver_t *driver, apr_dbd_results_t *res, int col) argument
355 apr_dbd_error(const apr_dbd_driver_t *driver, apr_dbd_t *handle, int errnum) argument
361 apr_dbd_escape(const apr_dbd_driver_t *driver, apr_pool_t *pool, const char *string, apr_dbd_t *handle) argument
368 apr_dbd_prepare(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, const char *query, const char *label, apr_dbd_prepared_t **statement) argument
479 apr_dbd_pquery(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, int *nrows, apr_dbd_prepared_t *statement, int nargs, const char **args) argument
488 apr_dbd_pselect(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, apr_dbd_results_t **res, apr_dbd_prepared_t *statement, int random, int nargs, const char **args) argument
497 apr_dbd_pvquery(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, int *nrows, apr_dbd_prepared_t *statement, ...) argument
510 apr_dbd_pvselect(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, apr_dbd_results_t **res, apr_dbd_prepared_t *statement, int random, ...) argument
524 apr_dbd_pbquery(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, int *nrows, apr_dbd_prepared_t *statement, const void **args) argument
533 apr_dbd_pbselect(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, apr_dbd_results_t **res, apr_dbd_prepared_t *statement, int random, const void **args) argument
542 apr_dbd_pvbquery(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, int *nrows, apr_dbd_prepared_t *statement, ...) argument
555 apr_dbd_pvbselect(const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, apr_dbd_results_t **res, apr_dbd_prepared_t *statement, int random, ...) argument
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/include/
H A Dapr_dbd.h95 /** apr_dbd_get_driver: get the driver struct for a name
98 * @param name - driver name
99 * @param driver - pointer to driver struct.
101 * @return APR_ENOTIMPL for no driver (when DSO not enabled)
102 * @return APR_EDSOOPEN if DSO driver file can't be opened
103 * @return APR_ESYMNOTFOUND if the driver file doesn't contain a driver
106 const apr_dbd_driver_t **driver);
111 * @param params - arguments to driver (implementatio
178 APU_DECLARE(const char*) apr_dbd_name(const apr_dbd_driver_t *driver); variable
[all...]
H A Dapr_crypto.h146 * @brief Get the driver struct for a name
148 * @param driver - pointer to driver struct.
149 * @param name - driver name
154 * @return APR_ENOTIMPL for no driver (when DSO not enabled)
155 * @return APR_EDSOOPEN if DSO driver file can't be opened
156 * @return APR_ESYMNOTFOUND if the driver file doesn't contain a driver
164 const apr_crypto_driver_t **driver,
169 * @brief Return the name of the driver
175 const apr_crypto_driver_t *driver); variable
409 const apr_crypto_driver_t *driver); variable
[all...]
/macosx-10.10/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_ri_driver.rb29 @driver = RDoc::RI::Driver.new @options
72 @driver.add_also_in out, []
84 @driver.add_also_in out, [@store1, @store2]
100 @driver.add_class out, 'Bar', [@cBar]
115 @driver.add_from out, @store1
127 @driver.add_extends out, [[[@cFooExt], @store1]]
143 @driver.add_extension_modules out, 'Includes', []
156 @driver.add_extension_modules out, 'Includes', [[[@cFooInc, enum], @store1]]
181 @driver.add_extension_modules out, 'Includes', [[[@cFooInc, enum], @store1]]
198 @driver
[all...]
/macosx-10.10/cups-408/cups/ppdc/
H A Dppdc-import.cxx49 ppdcDriver *driver; // Driver local
70 // See if the driver has already been imported...
71 if ((driver = find_driver(ppd->pcfilename)) == NULL)
80 driver = new ppdcDriver();
81 driver->type = PPDC_DRIVER_PS;
83 drivers->add(driver);
97 driver->add_copyright(ptr);
116 driver->add_attr(new ppdcAttr("NickName", NULL, NULL, ppd->nickname));
119 driver->add_attr(new ppdcAttr("ShortNickName", NULL, NULL,
122 driver
[all...]
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/lib/Parse/Yapp/
H A DOutput.pm34 my($head,$states,$rules,$tail,$driver);
52 <<$driver>>
74 $driver='use Parse::Yapp::Driver;';
85 and $driver=_CopyDriver();
/macosx-10.10/apache-793/httpd/modules/lua/
H A Dlua_dbd.c69 rc = apr_dbd_close(db->driver, db->handle);
78 db->driver = NULL;
103 apr_dbd_close(db->driver, db->handle);
111 db->driver = NULL;
134 rc = apr_dbd_check_conn(db->driver, db->pool, db->handle);
164 rc = apr_dbd_query(db->driver, db->handle, &x, statement);
175 const char *err = apr_dbd_error(db->driver, db->handle, rc);
209 escaped = apr_dbd_escape(db->driver, r->pool, statement,
248 while (apr_dbd_get_row(res->driver, res->pool, res->results,
254 entry = apr_dbd_get_entry(res->driver, ro
[all...]
H A Dlua_dbd.h31 const apr_dbd_driver_t *driver; member in struct:__anon6269
40 const apr_dbd_driver_t *driver; member in struct:__anon6270
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dtty_dev.c63 /* Common callbacks for the pseudo-teletype driver (pty/tty)
64 * and cloning pseudo-teletype driver (ptmx/pts).
181 tty_dev_register(struct tty_dev_t *driver) argument
183 if (driver) {
184 driver->next = tty_dev_head;
185 tty_dev_head = driver;
209 struct tty_dev_t *driver; local
210 for (driver = tty_dev_head; driver != NULL; driver
221 struct tty_dev_t *driver = pty_get_driver(dev); local
237 struct tty_dev_t *driver = pty_get_driver(dev); local
247 struct tty_dev_t *driver = pty_get_driver(dev); local
258 struct tty_dev_t *driver; local
318 struct tty_dev_t *driver; local
509 struct tty_dev_t *driver; local
554 struct tty_dev_t *driver; local
752 struct tty_dev_t *driver; local
954 struct tty_dev_t *driver; local
[all...]
/macosx-10.10/apache-793/httpd/modules/aaa/
H A Dmod_authn_dbd.c128 if ((ret = apr_dbd_pvselect(dbd->driver, r->pool, dbd->handle, &res,
133 user, apr_dbd_error(dbd->driver, dbd->handle, ret));
136 for (rv = apr_dbd_get_row(dbd->driver, r->pool, res, &row, -1);
138 rv = apr_dbd_get_row(dbd->driver, r->pool, res, &row, -1)) {
150 for (name = apr_dbd_get_name(dbd->driver, res, i);
152 name = apr_dbd_get_name(dbd->driver, res, i)) {
168 apr_dbd_get_entry(dbd->driver, row, i));
172 dbd_password = apr_dbd_get_entry(dbd->driver, row, 0);
221 if ((ret = apr_dbd_pvselect(dbd->driver, r->pool, dbd->handle, &res,
227 apr_dbd_error(dbd->driver, db
[all...]
H A Dmod_authz_dbd.c136 rv = apr_dbd_pvquery(dbd->driver, r->pool, dbd->handle, &nrows,
146 message = apr_dbd_error(dbd->driver, dbd->handle, rv);
165 else if ((rv = apr_dbd_pvselect(dbd->driver, r->pool, dbd->handle,
167 for (rv = apr_dbd_get_row(dbd->driver, r->pool, res, &row, -1);
169 rv = apr_dbd_get_row(dbd->driver, r->pool, res, &row, -1)) {
171 message = apr_dbd_error(dbd->driver, dbd->handle, rv);
177 newuri = apr_dbd_get_entry(dbd->driver, row, 0);
183 message = apr_dbd_error(dbd->driver, dbd->handle, rv);
220 rv = apr_dbd_pvselect(dbd->driver, r->pool, dbd->handle, &res,
223 for (rv = apr_dbd_get_row(dbd->driver,
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/crypto/
H A Dapr_crypto.c78 *driver = &driver_name; \
143 const apr_crypto_driver_t **driver, const char *name,
164 *driver = apr_hash_get(drivers, name, APR_HASH_KEY_STRING);
165 if (*driver) {
173 /* The driver DSO must have exactly the same lifetime as the
189 *driver = symbol;
191 apr_hash_set(drivers, name, APR_HASH_KEY_STRING, *driver);
193 if ((*driver)->init) {
194 rv = (*driver)->init(pool, params, result);
241 * @brief Return the name of the driver
246 apr_crypto_driver_name( const apr_crypto_driver_t *driver) argument
[all...]
/macosx-10.10/IOStorageFamily-182.1.1/
H A DIOMedia.cpp195 // Determine whether the client is a storage driver, which we consider
197 // new content. A storage driver need not be an IOStorage subclass, so
200 // If the client is indeed a storage driver, we reset the media's Leaf
240 // Determine whether the client is a storage driver, which we consider
242 // new content. A storage driver need not be an IOStorage subclass, so
245 // If the client is indeed a storage driver, we reset the media's Leaf
287 IOService * driver; local
307 driver = 0;
314 // Determine whether one of our clients is a storage driver.
324 driver
552 IOService * driver; local
1208 IOService * driver; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Ddadrfmt.h47 TestDataModule *driver; member in class:DataDrivenFormatTest
/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Dhotplug_macosx.c58 * Defines the type of driver in the driver vector
70 * An aggregation of useful information on a driver bundle in the
75 UInt8 m_NotEOV; /* set to 1 for any driver before the end */
77 HPDriverType m_type; /* type of the driver in this element */
80 UInt8 m_class; /* class of a non product specific driver */
81 UInt8 m_subClass; /* subClass of a non product specific driver */
82 UInt8 m_protocol; /* protocol of a non product specific driver */
92 HPDriver* m_driver; /* driver bundle information */
143 * Creates a vector of driver bundl
517 HPDriver* driver = driverBundle; local
666 HPDriver* driver = driverBundle; local
[all...]
/macosx-10.10/groff-38/groff/src/roff/troff/
H A Dmtsm.cpp359 driver = new statem();
364 delete driver;
447 driver->flush(fp, s);
452 if ((driver->bool_values[MTSM_EOL].is_known
453 && driver->bool_values[MTSM_EOL].value)
454 || (driver->bool_values[MTSM_BR].is_known
455 && driver->bool_values[MTSM_BR].value)) {
456 if (driver->units_values[MTSM_TI].is_known)
457 driver->units_values[MTSM_TI].is_known = 0;
458 if (driver
[all...]
/macosx-10.10/IOUSBMassStorageClass-370.0.4/
H A DIOUSBMassStorageClass.cpp261 // so this object will always be an interface driver.
288 // Set the IOUSBPipe object pointers to NULL so that the driver can
332 // Workaround flag for devices which spin themselves up/down and have problems with driver intervention.
531 // The device has a protocol that the driver does not
945 // For USB it is the responsibility of the client driver to request outstanding
946 // I/O requests be returned once driver termination has been initiated.
1234 // Calling registerService() will start driver matching and result in our handleOpen() method
1490 // Since the driver currently does not support abort, return an error
2479 IOUSBMassStorageClass * driver = NULL; local
2486 driver
[all...]
/macosx-10.10/AppleUSBIrDA-145.2.4/
H A DIrDAComm.h44 static IrDAComm * irDAComm(AppleIrDASerial *driver, AppleIrDA *appleirda); // IOKit style creation/init pair
45 bool init(AppleIrDASerial *driver, AppleIrDA *appleirda); // Set up to start
60 // Hardware driver has a packet to send to IrLAP
66 // Hardware driver calls this when the transmit to the pod has finished
69 // Hardware driver calls this when SetSpeed completes
91 AppleIrDASerial *fDriver; // back to scc/usb driver
94 USBIrDAQoS *fQoS; // driver supplied qos
/macosx-10.10/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoy.ml2 * Main driver code.
/macosx-10.10/iodbc-42.5/iodbc/iodbcadm/gtk/
H A Dtranslatorchooser.c6 * The iODBC driver manager.
160 char driver[1024], _date[1024], _size[1024]; local
210 curr, "", driver, sizeof (driver), "odbcinst.ini");
213 curr, "", driver, sizeof (driver), "odbcinst.ini");
216 /* Check if the driver is installed */
217 if (strcasecmp (driver, "Installed"))
220 /* Get the driver library name */
223 "Translator", "", driver, sizeo
[all...]

Completed in 327 milliseconds

123456