Lines Matching refs:p
527 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead);
529 while (p != NULL)
531 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p);
538 p = LIST_GetNext(p);
558 list_element_handle_t p;
569 p = LIST_GetHead(&shellContextHandle->commandContextListHead);
570 while (p != NULL)
572 tmpCommand = SHEEL_COMMAND_POINTER(p);
603 p = LIST_GetNext(p);
605 if (NULL == p)
690 list_element_handle_t p;
708 p = LIST_GetHead(&shellContextHandle->commandContextListHead);
709 while (p != NULL)
711 tmpCommand = SHEEL_COMMAND_POINTER(p);
723 p = LIST_GetNext(p);
750 char *p;
757 p = s_paramBuffer;
764 while ((position < len) && ((char)(*p) == ' '))
766 *p = '\0';
767 p++;
777 if (*p == '"')
779 p++;
781 argv[argc] = p;
784 while ((*p != '"') && (position < len))
786 p++;
790 *p = '\0';
791 p++;
796 argv[argc] = p;
798 while (((char)*p != ' ') && (position < len))
800 p++;