cstr             1602 ext/ldap/ldap.c static int _ldap_str_equal_to_const(const char *str, uint str_len, const char *cstr)
cstr             1606 ext/ldap/ldap.c 	if (strlen(cstr) != str_len)
cstr             1610 ext/ldap/ldap.c 		if (str[i] != cstr[i]) {
cstr               61 ext/mbstring/oniguruma/testu.c   char cpat[4000], cstr[4000];
cstr               69 ext/mbstring/oniguruma/testu.c   uconv(str,     cstr, ulen(str));
cstr               89 ext/mbstring/oniguruma/testu.c       fprintf(stdout, "OK(N): /%s/ '%s'\n", cpat, cstr);
cstr               93 ext/mbstring/oniguruma/testu.c       fprintf(stdout, "FAIL: /%s/ '%s'\n", cpat, cstr);
cstr               99 ext/mbstring/oniguruma/testu.c       fprintf(stdout, "FAIL(N): /%s/ '%s'\n", cpat, cstr);
cstr              104 ext/mbstring/oniguruma/testu.c         fprintf(stdout, "OK: /%s/ '%s'\n", cpat, cstr);
cstr              108 ext/mbstring/oniguruma/testu.c         fprintf(stdout, "FAIL: /%s/ '%s' %d-%d : %d-%d\n", cpat, cstr,
cstr              122 ext/mbstring/oniguruma/testu.c   uconv(str,     cstr, ulen(str));
cstr              161 ext/mbstring/oniguruma/testu.c       fprintf(stdout, "OK(N): /%s/ '%s'\n", cpat, cstr);
cstr              165 ext/mbstring/oniguruma/testu.c       fprintf(stdout, "FAIL: /%s/ '%s'\n", cpat, cstr);
cstr              171 ext/mbstring/oniguruma/testu.c       fprintf(stdout, "FAIL(N): /%s/ '%s'\n", cpat, cstr);
cstr              176 ext/mbstring/oniguruma/testu.c         fprintf(stdout, "OK: /%s/ '%s'\n", cpat, cstr);
cstr              180 ext/mbstring/oniguruma/testu.c         fprintf(stdout, "FAIL: /%s/ '%s' %d-%d : %d-%d\n", cpat, cstr,
cstr               45 ext/zip/lib/zip_file_set_comment.c     zip_string_t *cstr;
cstr               62 ext/zip/lib/zip_file_set_comment.c 	if ((cstr=_zip_string_new((const zip_uint8_t *)comment, len, flags, &za->error)) == NULL)
cstr               64 ext/zip/lib/zip_file_set_comment.c 	if ((flags & ZIP_FL_ENCODING_ALL) == ZIP_FL_ENC_GUESS && _zip_guess_encoding(cstr, ZIP_ENCODING_UNKNOWN) == ZIP_ENCODING_UTF8_GUESSED)
cstr               65 ext/zip/lib/zip_file_set_comment.c 	    cstr->encoding = ZIP_ENCODING_UTF8_KNOWN;
cstr               68 ext/zip/lib/zip_file_set_comment.c 	cstr = NULL;
cstr               79 ext/zip/lib/zip_file_set_comment.c 	changed = !_zip_string_equal(e->orig->comment, cstr);
cstr               81 ext/zip/lib/zip_file_set_comment.c 	changed = (cstr != NULL);
cstr               87 ext/zip/lib/zip_file_set_comment.c 		_zip_string_free(cstr);
cstr               91 ext/zip/lib/zip_file_set_comment.c         e->changes->comment = cstr;
cstr               95 ext/zip/lib/zip_file_set_comment.c 	_zip_string_free(cstr);
cstr               43 ext/zip/lib/zip_set_archive_comment.c     zip_string_t *cstr;
cstr               56 ext/zip/lib/zip_set_archive_comment.c 	if ((cstr=_zip_string_new((const zip_uint8_t *)comment, len, ZIP_FL_ENC_GUESS, &za->error)) == NULL)
cstr               59 ext/zip/lib/zip_set_archive_comment.c 	if (_zip_guess_encoding(cstr, ZIP_ENCODING_UNKNOWN) == ZIP_ENCODING_CP437) {
cstr               60 ext/zip/lib/zip_set_archive_comment.c 	    _zip_string_free(cstr);
cstr               66 ext/zip/lib/zip_set_archive_comment.c 	cstr = NULL;
cstr               71 ext/zip/lib/zip_set_archive_comment.c     if (((za->comment_orig && _zip_string_equal(za->comment_orig, cstr))
cstr               72 ext/zip/lib/zip_set_archive_comment.c 	 || (za->comment_orig == NULL && cstr == NULL))) {
cstr               73 ext/zip/lib/zip_set_archive_comment.c 	_zip_string_free(cstr);
cstr               77 ext/zip/lib/zip_set_archive_comment.c 	za->comment_changes = cstr;