| /src/lib/libedit/TEST/ |
| tc1.c | 64 static int continuation = 0; variable 78 return (continuation ? b : a); 197 if (!continuation && num == 1) 204 continuation = 0; 212 if (continuation) { 226 history(hist, &ev, continuation ? H_APPEND : H_ENTER, buf); 229 continuation = ncontinuation; 231 if (continuation)
|
| wtc1.c | 16 static int continuation; variable 26 return continuation ? b : a; 178 if(!continuation && numc == 1) 185 continuation = 0; 193 history_w(hist, &ev, continuation ? H_APPEND : H_ENTER, line); 195 continuation = ncontinuation; 197 if(continuation)
|
| /src/external/bsd/am-utils/dist/amd/ |
| amfs_generic.c | 66 * on the system. Instead we use a continuation scheme to allow mounts to 76 struct continuation { struct 94 static void free_continuation(struct continuation *cp); 95 static int amfs_bgmount(struct continuation *cp); 500 * The continuation function. This is called by 507 struct continuation *cp = (struct continuation *) arg; 610 struct continuation *cp = (struct continuation *) arg; 634 /* Normally it's amfs_bgmount() which frees the continuation. However, i [all...] |
| /src/usr.bin/patch/ |
| pch.c | 1409 int continuation; local 1436 continuation = 0; 1439 continuation = !continuation; 1440 if (!continuation ||
|
| /src/external/gpl3/binutils/dist/include/som/ |
| internal.h | 168 unsigned int continuation : 1; member in struct:som_subspace_dictionary_record
|
| /src/external/gpl3/binutils.old/dist/include/som/ |
| internal.h | 168 unsigned int continuation : 1; member in struct:som_subspace_dictionary_record
|
| /src/usr.bin/ftp/ |
| ftp.c | 397 int originalcode = 0, continuation = 0; local 505 if (continuation) 507 continuation++; 527 if (continuation && code != originalcode) {
|
| /src/external/bsd/openldap/dist/clients/tools/ |
| common.c | 634 char *continuation; local 636 continuation = strchr( cvalue, '/' ); 637 if ( continuation ) { 639 *continuation++ = '\0'; 640 if ( strcasecmp( continuation, "chainingPreferred" ) == 0 ) { 642 } else if ( strcasecmp( continuation, "chainingRequired" ) == 0 ) { 644 } else if ( strcasecmp( continuation, "referralsPreferred" ) == 0 ) { 646 } else if ( strcasecmp( continuation, "referralsRequired" ) == 0 ) { 651 "continuation value \"%s\" invalid\n", 652 continuation ); [all...] |
| /src/external/bsd/openldap/dist/servers/slapd/back-ldap/ |
| chain.c | 1554 continuation = BER_BVNULL; local 1561 enum_to_verb( chaining_mode, ( ( lc->lc_chaining_ctrlflag & SLAP_CH_CONTINUATION_MASK ) >> SLAP_CH_CONTINUATION_SHIFT ), &continuation ); 1565 + STRLENOF( "continuation=" ) + continuation.bv_len; 1568 "resolve=%s continuation=%s", 1569 resolve.bv_val, continuation.bv_val ); 1632 continuation = -1, local 1650 } else if ( strncasecmp( argv[ 0 ], "continuation=", STRLENOF( "continuation=" ) ) == 0 ) { 1651 continuation = str2chain( argv[ 0 ] + STRLENOF( "continuation=" ) ) [all...] |
| /src/external/apache2/mDNSResponder/dist/mDNSCore/ |
| DNSCommon.c | 1585 // 10xxxxxx is a continuation byte of a multi-byte character 1607 // Check if the byte right after the chop point is a UTF-8 continuation byte, 1610 mDNSBool continuation = ((c1 & 0xC0) == 0x80); local 1612 if (!continuation && !secondsurrogate) break; 5979 // Now, back up until we find first non-continuation-char 5981 // Now s[i-1] is the first non-continuation-char 5982 // and (j-i) is the number of continuation-chars we found 6080 // allowed output. If s[i] is a UTF-8 continuation character, then we've cut a unicode character in half, 6081 // so back up 'i' until s[i] is no longer a UTF-8 continuation character. (if the input was proprly
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| coroutines.cc | 1599 tree conthand; /* This is the handle for a continuation. */ 2162 tree continuation = coro_build_artificial_var (loc, coro_actor_continue_id, local 2166 BIND_EXPR_VARS (actor_bind) = continuation; 2187 /* Declare the continuation handle. */ 2188 add_decl_expr (continuation); 2400 /* This is the 'continuation' return point. For such a case we have a coro 2410 addr = build_new_method_call (continuation, addr, NULL, NULL_TREE, 2431 continue_label, continuation, 2};
|