Lines Matching refs:prot
719 int prot, flags; in php_stdiop_set_option() local
738 prot = PROT_READ; in php_stdiop_set_option()
742 prot = PROT_READ | PROT_WRITE; in php_stdiop_set_option()
746 prot = PROT_READ; in php_stdiop_set_option()
750 prot = PROT_READ | PROT_WRITE; in php_stdiop_set_option()
756 range->mapped = (char*)mmap(NULL, range->length, prot, flags, fd, range->offset); in php_stdiop_set_option()
780 DWORD prot, acc, loffs = 0, hoffs = 0, delta = 0; in php_stdiop_set_option() local
790 prot = PAGE_READONLY; in php_stdiop_set_option()
794 prot = PAGE_READWRITE; in php_stdiop_set_option()
798 prot = PAGE_READONLY; in php_stdiop_set_option()
803 prot = PAGE_READWRITE; in php_stdiop_set_option()
812 data->file_mapping = CreateFileMapping(hfile, NULL, prot, 0, 0, NULL); in php_stdiop_set_option()