Searched refs:prepare (Results 1 - 25 of 248) sorted by relevance

12345678910

/macosx-10.9.5/rsync-42/rsync/
H A Dprepare-source12 make -f prepare-source.mak
/macosx-10.9.5/Libc-997.90.3/sys/
H A Dfork.c41 void _libc_fork_init(void (*prepare)(void), void (*parent)(void), void (*child)(void)) argument
43 _libSystem_atfork_prepare = prepare;
H A D__libc_init.c47 extern void _libc_fork_init(void (*prepare)(void), void (*parent)(void), void (*child)(void));
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet6/
H A Din6_cga.c89 in6_cga_is_prepare_valid(const struct in6_cga_prepare *prepare, argument
97 VERIFY(prepare != NULL);
100 if (prepare->cga_security_level == 0)
103 if (prepare->cga_security_level > 7)
107 SHA1Update(&ctx, &prepare->cga_modifier.octets,
114 n = 2 * (u_int) prepare->cga_security_level;
124 in6_cga_generate_iid(const struct in6_cga_prepare *prepare, argument
130 VERIFY(prepare != NULL);
131 VERIFY(prepare->cga_security_level < 8);
136 SHA1Update(&ctx, &prepare
189 const struct in6_cga_prepare *prepare; local
300 in6_cga_generate(const struct in6_cga_prepare *prepare, u_int8_t collisions, struct in6_addr *in6) argument
[all...]
/macosx-10.9.5/AppleRAID-4.0.6/
H A DAppleRAIDMemoryDescriptor.cpp49 IOReturn AppleRAIDMemoryDescriptor::prepare(IODirection forDirection) function in class:AppleRAIDMemoryDescriptor
54 result = mdMemoryDescriptor->prepare(forDirection);
/macosx-10.9.5/CPANInternal-140/JSON-RPC/ex/
H A Dclient.pl14 $client->prepare( $uri, ['sum', 'echo'] ); # if call /API/Sublcass, sum method return (sum * 2)
/macosx-10.9.5/CPANInternal-140/JSON-RPC-0.96/ex/
H A Dclient.pl14 $client->prepare( $uri, ['sum', 'echo'] ); # if call /API/Sublcass, sum method return (sum * 2)
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DTransaction.java295 transaction manager must send <em>prepare</em> messages to each
297 {@link com.sleepycat.db.Transaction#prepare Transaction.prepare} call and await its successful return
300 responses from all of its <em>prepare</em> messages should it issue
319 public void prepare(final byte[] gid) method in class:Transaction
322 txn.prepare(gid);
/macosx-10.9.5/WebCore-7537.78.1/platform/sql/
H A DSQLiteStatement.h43 int prepare();
58 int prepareAndStep() { if (int error = prepare()) return error; return step(); }
H A DSQLiteStatement.cpp62 int SQLiteStatement::prepare() function in class:WebCore::SQLiteStatement
71 LOG(SQLDatabase, "SQL - prepare - %s", m_query.ascii().data());
143 if (!m_statement && prepare() != SQLITE_OK)
156 if (!m_statement && prepare() != SQLITE_OK)
297 if (prepare() != SQLITE_OK)
445 if (prepare() != SQLITE_OK) {
473 if (prepare() != SQLITE_OK)
493 if (prepare() != SQLITE_OK)
513 if (prepare() != SQLITE_OK)
533 if (prepare() !
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Drecd002.tcl91 # Note that since prepare-discard ultimately aborts
92 # the txn, it must come before prepare-commit.
94 op_recover prepare-abort $testdir $env_cmd $testfile2 \
96 op_recover prepare-discard $testdir $env_cmd $testfile2 \
98 op_recover prepare-commit $testdir $env_cmd $testfile2 \
H A Drecd004.tcl84 # Note that since prepare-discard ultimately aborts
85 # the txn, it must come before prepare-commit.
87 op_recover prepare-abort $testdir $env_cmd $testfile2 \
89 op_recover prepare-discard $testdir $env_cmd $testfile2 \
91 op_recover prepare-commit $testdir $env_cmd $testfile2 \
H A Drecd001.tcl13 # TEST to prepare for the next test (this applies to all other recovery
51 # other does prepare, prepare-abort, and prepare-commit for each
192 # Note that since prepare-discard ultimately aborts
193 # the txn, it must come before prepare-commit.
195 op_recover prepare-abort $testdir $env_cmd $testfile2 \
197 op_recover prepare-discard $testdir $env_cmd $testfile2 \
199 op_recover prepare-commit $testdir $env_cmd $testfile2 \
227 foreach op {abort commit prepare
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/appcache/
H A DApplicationCacheStorage.cpp110 if (statement.prepare() != SQLResultOk)
185 if (statement.prepare() != SQLResultOk)
227 if (statement.prepare() != SQLResultOk)
297 if (statement.prepare() != SQLResultOk)
446 if (statement.prepare() != SQLResultOk)
472 if (statement.prepare() != SQLResultOk)
513 if (statement.prepare() != SQLResultOk)
546 if (updateStatement.prepare() != SQLResultOk)
589 if (statement.prepare() != SQLResultOk)
685 if (statement.prepare() !
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-ContextualFetch/t/
H A D01.t21 my $insert = $dbh->prepare("INSERT INTO foo VALUES (?, ?)");
27 my $sth = $dbh->prepare($sql);
/macosx-10.9.5/CPANInternal-140/DBIx-ContextualFetch-1.03/t/
H A D01.t21 my $insert = $dbh->prepare("INSERT INTO foo VALUES (?, ?)");
27 my $sth = $dbh->prepare($sql);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/blackberry/
H A DAutofillBackingStore.cpp84 HANDLE_SQL_EXEC_FAILURE(m_addStatement->prepare() != SQLResultOk,
85 false, "Failed to prepare add statement");
88 HANDLE_SQL_EXEC_FAILURE(m_updateStatement->prepare() != SQLResultOk,
89 false, "Failed to prepare update statement");
92 HANDLE_SQL_EXEC_FAILURE(m_containsStatement->prepare() != SQLResultOk,
93 false, "Failed to prepare contains statement");
96 HANDLE_SQL_EXEC_FAILURE(m_getStatement->prepare() != SQLResultOk,
97 false, "Failed to prepare get statement");
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIOInterleavedMemoryDescriptor.h59 @param direction An I/O direction to be associated with the descriptor, which may affect the operation of the prepare and complete methods on some architectures.
69 @param direction An I/O direction to be associated with the descriptor, which may affect the operation of the prepare and complete methods on some architectures.
78 @param direction An I/O direction to be associated with the descriptor, which may affect the operation of the prepare and complete methods on some architectures. */
105 /*! @function prepare
111 virtual IOReturn prepare(IODirection forDirection = kIODirectionNone);
115 @discussion This method should not be called unless a prepare was previously issued; the prepare() and complete() must occur in pairs, before and after an I/O transfer involving pageable memory.
H A DIOMultiMemoryDescriptor.h57 @param withDirection An I/O direction to be associated with the descriptor, which may affect the operation of the prepare and complete methods on some architectures.
72 @param withDirection An I/O direction to be associated with the descriptor, which may affect the operation of the prepare and complete methods on some architectures.
93 /*! @function prepare
99 virtual IOReturn prepare(IODirection forDirection = kIODirectionNone);
103 @discussion This method should not be called unless a prepare was previously issued; the prepare() and complete() must occur in pairs, before and after an I/O transfer involving pageable memory.
/macosx-10.9.5/WebCore-7537.78.1/platform/network/qt/
H A DCookieJarQt.cpp191 sqlQuery.prepare(QLatin1String("DELETE FROM cookies WHERE cookieId=:cookieIdvalue"));
207 sqlQuery.prepare(QLatin1String("DELETE FROM cookies WHERE cookieId=:cookieIdvalue"));
225 sqlQuery.prepare(QLatin1String("DELETE FROM cookies"));
254 sqlQuery.prepare(QLatin1String("INSERT OR REPLACE INTO cookies (cookieId, cookie) VALUES (:cookieIdvalue, :cookievalue)"));
278 sqlQuery.prepare(QLatin1String("CREATE TABLE IF NOT EXISTS cookies (cookieId VARCHAR PRIMARY KEY, cookie BLOB);"));
289 sqlQuery.prepare(QLatin1String("SELECT cookie FROM cookies"));
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Storage/
H A DLocalStorageDatabaseTracker.cpp85 if (statement.prepare() != SQLResultOk) {
86 LOG_ERROR("Failed to prepare statement.");
111 if (deleteStatement.prepare() != SQLResultOk) {
112 LOG_ERROR("Unable to prepare deletion of all origins");
193 if (statement.prepare() != SQLResultOk) {
194 LOG_ERROR("Failed to prepare statement.");
251 if (statement.prepare() != SQLResultOk) {
278 if (deleteStatement.prepare() != SQLResultOk) {
279 LOG_ERROR("Unable to prepare deletion of origin '%s'", originIdentifier.ascii().data());
307 if (pathStatement.prepare() !
[all...]
H A DLocalStorageDatabase.cpp174 if (query.prepare() != SQLResultOk) {
287 if (clearStatement.prepare() != SQLResultOk) {
288 LOG_ERROR("Failed to prepare clear statement - cannot write to local storage database");
300 if (insertStatement.prepare() != SQLResultOk) {
301 LOG_ERROR("Failed to prepare insert statement - cannot write to local storage database");
306 if (deleteStatement.prepare() != SQLResultOk) {
307 LOG_ERROR("Failed to prepare delete statement - cannot write to local storage database");
342 if (query.prepare() != SQLResultOk) {
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/lib/DBIx/Class/Schema/Loader/DBI/
H A DMSSQL.pm41 my $sth = $dbh->prepare(qq{sp_pkeys '$table'});
58 my $sth = $dbh->prepare(qq{sp_fkeys \@FKTABLE_NAME = '$table'});
83 my $sth = $dbh->prepare(qq{SELECT CCU.CONSTRAINT_NAME, CCU.COLUMN_NAME FROM INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE CCU
106 my $sth = $dbh->prepare(qq{
119 $sth = $dbh->prepare(qq{
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/DBI/
H A DMSSQL.pm41 my $sth = $dbh->prepare(qq{sp_pkeys '$table'});
58 my $sth = $dbh->prepare(qq{sp_fkeys \@FKTABLE_NAME = '$table'});
83 my $sth = $dbh->prepare(qq{SELECT CCU.CONSTRAINT_NAME, CCU.COLUMN_NAME FROM INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE CCU
106 my $sth = $dbh->prepare(qq{
119 $sth = $dbh->prepare(qq{
/macosx-10.9.5/ruby-104/ruby/tool/
H A Drbinstall.rb281 def prepare(mesg, basedir, subdirs=nil) method in class:makedirs
335 prepare "binary commands", bindir
350 prepare "base libraries", libdir
360 prepare "arch files", archlibdir
372 prepare "pkgconfig data", pkgconfigdir = File.join(libdir, "pkgconfig")
378 prepare "extension objects", archlibdir
381 prepare "extension objects", sitearchlibdir
382 prepare "extension objects", vendorarchlibdir
385 prepare "extension headers", archhdrdir
389 prepare "extensio
[all...]

Completed in 257 milliseconds

12345678910