Searched defs:cookie (Results 1 - 6 of 6) sorted by relevance

/PHP_TRUNK/ext/sqlite3/libsqlite/
H A Dsqlite3.c10788 u8 checkSchema; /* Causes schema cookie check after an error */
10817 int cookieGoto; /* Address of OP_Goto to cookie verifier subroutine */
90058 int cookie; local
[all...]
/PHP_TRUNK/ext/imap/
H A Dphp_imap.c3478 char *cookie = NIL; local
3822 /* find cookie */
3823 for (param = bod->parameter; param && !cookie; param = param->next) {
3825 cookie = param->value;
3830 if (!cookie) {
3831 cookie = "-";
3832 } else if (strlen(cookie) > (SENDBUFLEN - 2 - 2 - 2)) { /* validate cookie length -- + CRLF * 2 */
3846 /* output cookie, mini-header, and contents */
3847 spprintf(&tempstring, 0, "%s--%s%s%s%s", mystring, cookie, CRL
[all...]
/PHP_TRUNK/ext/ldap/
H A Dldap.c2189 /* {{{ proto mixed ldap_control_paged_result(resource link, int pagesize [, bool iscritical [, string cookie]])
2196 char *cookie = NULL; local
2205 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|bs", &link, &pagesize, &iscritical, &cookie, &cookie_len) != SUCCESS) {
2226 lcookie.bv_val = cookie;
2281 /* {{{ proto bool ldap_control_paged_result_response(resource link, resource result [, string &cookie [, int &estimated]])
2285 zval *link, *result, *cookie, *estimated; local
2295 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rr|zz", &link, &result, &cookie, &estimated) != SUCCESS) {
2361 zval_dtor(cookie);
2363 ZVAL_EMPTY_STRING(cookie);
2365 ZVAL_STRINGL(cookie, lcooki
[all...]
/PHP_TRUNK/main/streams/
H A Dcast.c41 FILE *fopencookie(void *cookie, const char *mode, COOKIE_IO_FUNCTIONS_T *funcs) argument
43 return funopen(cookie, funcs->reader, funcs->writer, funcs->seeker, funcs->closer);
55 static int stream_cookie_reader(void *cookie, char *buffer, int size) argument
60 ret = php_stream_read((php_stream*)cookie, buffer, size);
64 static int stream_cookie_writer(void *cookie, const char *buffer, int size) argument
68 return php_stream_write((php_stream *)cookie, (char *)buffer, size);
71 static fpos_t stream_cookie_seeker(void *cookie, off_t position, int whence) argument
75 return (fpos_t)php_stream_seek((php_stream *)cookie, position, whence);
78 static int stream_cookie_closer(void *cookie) argument
80 php_stream *stream = (php_stream*)cookie;
88 stream_cookie_reader(void *cookie, char *buffer, size_t size) argument
97 stream_cookie_writer(void *cookie, const char *buffer, size_t size) argument
105 stream_cookie_seeker(void *cookie, __off64_t *position, int whence) argument
117 stream_cookie_seeker(void *cookie, off_t position, int whence) argument
125 stream_cookie_closer(void *cookie) argument
[all...]
/PHP_TRUNK/ext/standard/
H A Dhead.c78 char *cookie, *encoded_value = NULL; local
111 cookie = emalloc(len + 100);
115 * MSIE doesn't delete a cookie when you set it to a null value
120 snprintf(cookie, len + 100, "Set-Cookie: %s=deleted; expires=%s; Max-Age=0", name, dt);
123 snprintf(cookie, len + 100, "Set-Cookie: %s=%s", name, value ? encoded_value : "");
127 strlcat(cookie, "; expires=", len + 100);
133 efree(cookie);
138 strlcat(cookie, dt, len + 100);
142 strlcat(cookie, "; Max-Age=", len + 100);
143 strlcat(cookie, tsdelt
[all...]
/PHP_TRUNK/ext/soap/
H A Dphp_http.c141 name_len != sizeof("cookie")-1 ||
142 strncasecmp(s, "cookie", sizeof("cookie")-1) != 0) &&
932 /* Grab and send back every cookie */
940 char *end_pos, *cookie; local
952 cookie = get_http_header_value(cookie_itt,"Set-Cookie: ");
954 eqpos = strstr(cookie, "=");
955 sempos = strstr(cookie, ";");
964 cookie_len = strlen(cookie)-(eqpos-cookie)
[all...]

Completed in 124 milliseconds