Lines Matching refs:p
525 list_element_handle_t p = LIST_GetHead(&shellContextHandle->commandContextListHead);
527 while (p != NULL)
529 shellCommandContextHandle = SHEEL_COMMAND_POINTER(p);
536 p = LIST_GetNext(p);
556 list_element_handle_t p;
567 p = LIST_GetHead(&shellContextHandle->commandContextListHead);
568 while (p != NULL)
570 tmpCommand = SHEEL_COMMAND_POINTER(p);
601 p = LIST_GetNext(p);
603 if (NULL == p)
688 list_element_handle_t p;
706 p = LIST_GetHead(&shellContextHandle->commandContextListHead);
707 while (p != NULL)
709 tmpCommand = SHEEL_COMMAND_POINTER(p);
721 p = LIST_GetNext(p);
748 char *p;
755 p = s_paramBuffer;
762 while ((position < len) && ((char)(*p) == ' '))
764 *p = '\0';
765 p++;
775 if (*p == '"')
777 p++;
779 argv[argc] = p;
782 while ((*p != '"') && (position < len))
784 p++;
788 *p = '\0';
789 p++;
794 argv[argc] = p;
796 while (((char)*p != ' ') && (position < len))
798 p++;