Searched refs:str_len (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadFileHandler.java701 int str_len = str.length();
704 while (current_position < str_len) {
726 while (current_sub_position < str_len) {
805 if (current_position == str_len) {
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadFileHandler.java701 int str_len = str.length();
704 while (current_position < str_len) {
726 while (current_sub_position < str_len) {
805 if (current_position == str_len) {
/forgerock/web-agents-v4/source/
H A Dutility.h232 void xml_entity_escape(char *temp_str, size_t str_len);
H A Dutility.c1662 * @param str_len The number of characters in the incoming string to convert.
1664 void xml_entity_escape(char *temp_str, size_t str_len) { argument
1672 for (i = 0; i < str_len; i++) {
1676 memmove(temp_str + i + nshifts, temp_str + i, str_len - i + nshifts);
1680 str_len += nshifts;
1685 temp_str[str_len] = '\0';

Completed in 50 milliseconds