Home | History | Annotate | Download | only in lib

Lines Matching defs:raw_mem

68     picoos_uint8 * raw_mem; /* pointer to allocated memory. NULL if preallocated. */
106 this->raw_mem = NULL;
118 /* we have to explicitly free 'raw_mem' here because in testing
121 if ((*this)->raw_mem != NULL) {
122 picoos_deallocProtMem(mm, (void *) &(*this)->raw_mem);
601 res->raw_mem = picoos_allocProtMem(this->common->mm, maxlen);
603 status = (NULL == res->raw_mem) ? PICO_EXC_OUT_OF_MEM : PICO_OK;
606 rem = (uintptr_t) res->raw_mem % PICOOS_ALIGN_SIZE;
608 res->start = res->raw_mem + (PICOOS_ALIGN_SIZE - rem);
610 res->start = res->raw_mem;
706 if (NULL != rsrc->raw_mem) {
707 picoos_deallocProtMem(this->common->mm, (void *) &rsrc->raw_mem);