Searched refs:attempt (Results 1 - 25 of 91) sorted by relevance

1234

/macosx-10.10/ppp-786.1.1/Documentation/scripts/
H A Dredialer71 # echo "dialing attempt number: $1" >/dev/console
88 attempt=0
90 attempt=`expr $attempt + 1`
91 callall $attempt
92 if [ "$attempt" = "$MAX_ATTEMPTS" ]; then
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dsysloglib.h45 int attempt; /* logfile attempt state */ member in struct:__anon9317
H A Dcloselog.c48 log.attempt = 0;
H A Dsyslog.c44 static const Namval_t attempt[] =
264 if (log.attempt >= elementsof(attempt))
266 p = (Namval_t*)&attempt[log.attempt++];
/macosx-10.10/rsync-45/rsync/testsuite/
H A Dlongdir.test12 longname=This-is-a-directory-with-a-stupidly-long-name-created-in-an-attempt-to-provoke-an-error-found-in-2.0.11-that-should-hopefully-never-appear-again-if-this-test-does-its-job
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dgnus-fun.el118 (attempt "")
122 (setq attempt
128 (if (> (length attempt) 726)
132 (length attempt) quant))
136 (insert attempt)
/macosx-10.10/security_dotmac_tp-55107.1/lib/
H A DdotMacXmlRpc.cpp130 for(unsigned attempt=0; attempt<2; attempt++) {
132 xmlDebug("performAuthenticatedXMLRPC: WSMethodInvocationInvoke (attempt %u)\n", attempt);
159 if ((HTTPResponseCode == 401) && (attempt == 0)) {
/macosx-10.10/ksh-23/ksh/src/lib/libast/path/
H A Dpathtemp.c114 int attempt; local
289 for (attempt = 0; attempt < ATTEMPT; attempt++)
291 if (!tmp.rng || !tmp.seed && (attempt || tmp.pid != getpid()))
300 tmp.rng = (uint32_t)tmp.pid * ((uint32_t)time(NiL) ^ (((uint32_t)integralof(&attempt)) >> 3) ^ (((uint32_t)integralof(tmp.dir)) >> 3));
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/Security/
H A DtlsCallbacks.c115 tls_handshake_set_retransmit_timer_callback(tls_handshake_ctx_t ctx, int attempt) argument
119 sslDebugLog("%p attempt=%d\n", ctx, attempt);
121 if(attempt) {
122 myCtx->timeout_deadline = CFAbsoluteTimeGetCurrent()+((1<<(attempt-1))*myCtx->timeout_duration);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/lib/
H A DtlsCallbacks.c115 tls_handshake_set_retransmit_timer_callback(tls_handshake_ctx_t ctx, int attempt) argument
119 sslDebugLog("%p attempt=%d\n", ctx, attempt);
121 if(attempt) {
122 myCtx->timeout_deadline = CFAbsoluteTimeGetCurrent()+((1<<(attempt-1))*myCtx->timeout_duration);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/security_ssl/
H A DtlsCallbacks.c115 tls_handshake_set_retransmit_timer_callback(tls_handshake_ctx_t ctx, int attempt) argument
119 sslDebugLog("%p attempt=%d\n", ctx, attempt);
121 if(attempt) {
122 myCtx->timeout_deadline = CFAbsoluteTimeGetCurrent()+((1<<(attempt-1))*myCtx->timeout_duration);
/macosx-10.10/CPANInternal-159.1/Crypt-SSLeay-0.64/
H A DMakefile.PL66 The test suite can attempt to connect to public servers to ensure that the
/macosx-10.10/WebCore-7600.1.25/Modules/webdatabase/
H A DDatabaseServer.cpp123 OpenAttempt attempt)
128 switch (attempt) {
120 openDatabase(RefPtr<DatabaseBackendContext>& backendContext, DatabaseType type, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError &error, String& errorMessage, OpenAttempt attempt) argument
/macosx-10.10/vim-55/runtime/syntax/
H A Dwsh.vim7 " VBScript, it's close enough for us. No attempt is made to handle
/macosx-10.10/ruby-106/ruby/lib/rubygems/
H A Dinstall_update_options.rb145 "Don't attempt to upgrade gems already",
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclStringObj.c141 * attempt to allocate originalLength + 2*appendLength +
182 int attempt; local
186 attempt = 2 * needed;
187 if (attempt >= 0 && attempt <= STRING_MAXCHARS) {
188 ptr = stringAttemptRealloc(stringPtr, attempt);
193 * overflow into invalid argument values for attempt.
199 attempt = needed + growth;
200 ptr = stringAttemptRealloc(stringPtr, attempt);
205 attempt
[all...]
/macosx-10.10/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/
H A DVisitorFactory.pm72 This factory will load any module contained inside the B<Tree::Simple::Visitor::*> namespace. Given a name, it will attempt to C<require> the module B<Tree::Simple::Visitor::E<lt>I<Name>E<gt>.pm>. This allows others to create Visitors which can be accessed with this factory, without needed to include them in this distrobution.
84 Given a path and Tree::Simple hierarchy, this Visitor will attempt to find the node specified by the path.
88 Given a UID and Tree::Simple hierarchy, this Visitor will attempt to find the node with the same UID.
92 Given a node value and Tree::Simple hierarchy, this Visitor will attempt to find the node with the same node value.
/macosx-10.10/ruby-106/ruby/lib/rubygems/commands/
H A Dpristine_command.rb57 If --no-extensions is provided pristine will not attempt to restore a gem
/macosx-10.10/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/Visitor/
H A DFindByNodeValue.pm155 Given a node value and Tree::Simple hierarchy, this Visitor will attempt to find the node with the same node value.
175 This is the node value we will attempt to find within the tree.
H A DFindByPath.pm162 Given a path and Tree::Simple hierarchy, this Visitor will attempt to find the node specified by the path.
178 This is the path we will attempt to follow down the tree. We will do a stringified comparison of each element of the path and the current tree's node (or the value returned by the node filter if it is set).
H A DFindByUID.pm155 Given a UID and Tree::Simple hierarchy, this Visitor will attempt to find the node with the same UID.
175 This is the UID we will attempt to find within the tree.
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dcaniter.cpp381 UnicodeString attempt; local
382 nfd.normalize(possible, attempt, status);
384 // TODO: check if operator == is semanticaly the same as attempt.equals(segment)
385 if (attempt==segment) {
/macosx-10.10/OpenSSH-189/openssh/
H A Dauth2.c232 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
237 if (authctxt->attempt++ == 0) {
367 (authctxt->attempt > 1 || strcmp(method, "none") != 0))
H A Dauth.h58 int attempt; member in struct:Authctxt
H A Dsshconnect2.c936 static int attempt = 0; local
937 if (attempt++ >= 1)
986 static int attempt = 0; local
992 if (attempt++ >= options.number_of_password_prompts)
995 if (attempt != 1)
1642 static int attempt = 0; local
1644 if (attempt++ >= options.number_of_password_prompts)
1647 if (attempt > 1 && !authctxt->info_req_seen) {
1901 static int attempt = 0; /* XXX share with userauth_password's? */ local
1903 if (attempt
[all...]

Completed in 312 milliseconds

1234