Home | History | Annotate | Download | only in cd9660

Lines Matching defs:sl_ptr

499 	char* sl_ptr;
501 sl_ptr = node->node->symlink;
513 if (*sl_ptr == '/') {
519 sl_ptr++;
526 while ((*sl_ptr != '/') && (*sl_ptr != '\0')) {
528 if (*sl_ptr == '.') {
529 if ((*(sl_ptr + 1) == '/') || (*(sl_ptr + 1)
532 sl_ptr++;
533 } else if(*(sl_ptr + 1) == '.') {
534 if ((*(sl_ptr + 2) == '/') ||
535 (*(sl_ptr + 2) == '\0')) {
537 sl_ptr += 2;
540 temp_cr[dir_count+2] = *sl_ptr;
541 sl_ptr++;
545 temp_cr[dir_count + 2] = *sl_ptr;
546 sl_ptr++;
607 if (*sl_ptr == '\0') {
612 sl_ptr++;