copy_len 1949 Zend/zend_virtual_cwd.c int copy_len = new_state.cwd_length>MAXPATHLEN-1 ? MAXPATHLEN-1 : new_state.cwd_length; copy_len 1950 Zend/zend_virtual_cwd.c memcpy(real_path, new_state.cwd, copy_len); copy_len 1951 Zend/zend_virtual_cwd.c real_path[copy_len] = '\0'; copy_len 514 ext/oci8/oci8_lob.c ub4 length_dest, length_from, copy_len; copy_len 526 ext/oci8/oci8_lob.c copy_len = length_from - descriptor_from->lob_current_position; copy_len 528 ext/oci8/oci8_lob.c copy_len = (ub4) length; copy_len 531 ext/oci8/oci8_lob.c if ((int)copy_len <= 0) { copy_len 542 ext/oci8/oci8_lob.c copy_len, copy_len 79 ext/standard/formatted_print.c size_t copy_len; copy_len 82 ext/standard/formatted_print.c copy_len = (expprec ? MIN(max_width, len) : len); copy_len 83 ext/standard/formatted_print.c npad = (min_width < copy_len) ? 0 : min_width - copy_len; copy_len 87 ext/standard/formatted_print.c m_width = MAX(min_width, copy_len); copy_len 111 ext/standard/formatted_print.c copy_len--; copy_len 118 ext/standard/formatted_print.c memcpy(&ZSTR_VAL(*buffer)[*pos], add, copy_len + 1); copy_len 119 ext/standard/formatted_print.c *pos += copy_len; copy_len 760 main/fopen_wrappers.c int copy_len; copy_len 792 main/fopen_wrappers.c copy_len = path_len > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : path_len; copy_len 794 main/fopen_wrappers.c memcpy(real_path, filepath, copy_len); copy_len 795 main/fopen_wrappers.c real_path[copy_len] = '\0'; copy_len 797 main/fopen_wrappers.c real_path = estrndup(filepath, copy_len); copy_len 818 main/fopen_wrappers.c copy_len = new_state.cwd_length > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : new_state.cwd_length; copy_len 819 main/fopen_wrappers.c memcpy(real_path, new_state.cwd, copy_len); copy_len 820 main/fopen_wrappers.c real_path[copy_len] = '\0';