Home
last modified time | relevance | path

Searched refs:copy_len (Results 1 – 4 of 4) sorted by relevance

/PHP-5.5/main/
H A Dfopen_wrappers.c750 int copy_len; local
777 copy_len = strlen(filepath) > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : strlen(filepath);
779 memcpy(real_path, filepath, copy_len);
780 real_path[copy_len] = '\0';
782 real_path = estrndup(filepath, copy_len);
803 copy_len = new_state.cwd_length > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : new_state.cwd_length;
804 memcpy(real_path, new_state.cwd, copy_len);
805 real_path[copy_len] = '\0';
/PHP-5.5/ext/standard/
H A Dformatted_print.c80 int copy_len; in php_sprintf_appendstring() local
83 copy_len = (expprec ? MIN(max_width, len) : len); in php_sprintf_appendstring()
84 npad = min_width - copy_len; in php_sprintf_appendstring()
92 m_width = MAX(min_width, copy_len); in php_sprintf_appendstring()
115 copy_len--; in php_sprintf_appendstring()
122 memcpy(&(*buffer)[*pos], add, copy_len + 1); in php_sprintf_appendstring()
123 *pos += copy_len; in php_sprintf_appendstring()
/PHP-5.5/ext/oci8/
H A Doci8_lob.c535 ub4 length_dest, length_from, copy_len; in php_oci_lob_copy() local
546 copy_len = length_from - descriptor_from->lob_current_position; in php_oci_lob_copy()
548 copy_len = length; in php_oci_lob_copy()
551 if ((int)copy_len <= 0) { in php_oci_lob_copy()
562 copy_len, in php_oci_lob_copy()
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c1960 int copy_len = new_state.cwd_length>MAXPATHLEN-1 ? MAXPATHLEN-1 : new_state.cwd_length; in tsrm_realpath() local
1961 memcpy(real_path, new_state.cwd, copy_len); in tsrm_realpath()
1962 real_path[copy_len] = '\0'; in tsrm_realpath()

Completed in 18 milliseconds