Home
last modified time | relevance | path

Searched refs:_p (Results 1 – 11 of 11) sorted by relevance

/l4re-core-master/cxx/lib/tl/include/
A Dref_ptr151 _p = 0;
167 _p = o._p;
185 _p = o._p;
224 { return _p == o._p; }
227 { return _p != o._p; }
230 { return _p < o._p; }
233 { return _p <= o._p; }
236 { return _p > o._p; }
239 { return _p >= o._p; }
269 T *_p;
[all …]
A Dauto_ptr39 T *_p;
51 explicit Auto_ptr(T *p = 0) throw() : _p(p) {}
58 : _p(const_cast<Auto_ptr<T>&>(o).release())
69 if (_p) delete _p;
70 _p = const_cast<Auto_ptr<T>&>(o).release();
77 { if (_p) delete _p; }
90 T *get() const throw() { return _p; }
98 T *release() throw() { T *t = _p; _p = 0; return t; }
105 if (_p) delete _p;
106 _p = p;
[all …]
A Dlist181 p->_p->_n = this;
183 p->_p = _p;
184 _p->_n = p;
185 _p = pr;
191 p->_p->_n = _n;
192 p->_p = this;
193 _n->_p = p;
200 if (_p != this)
202 _p->_n = _n;
203 _n->_p = _p;
[all …]
/l4re-core-master/libloader/include/
A Dremote_mem48 access_ok(_p, sizeof(T));
63 _p = (char *)p;
77 { _top = top; _p = top; }
83 char *_p;
91 access_ok(_p, len + 1);
92 _p -= len + 1;
94 _p[len] = 0;
96 return _p;
103 access_ok(_p, size);
104 _p -= size;
[all …]
/l4re-core-master/moe/server/src/
A Dpage_alloc.h50 void *_p = 0;
56 void *p = _p; in release()
57 _p = 0; in release()
63 if (n == _p)
66 void *p = _p;
69 _p = n;
79 void *get() const { return _p; } in get()
80 void *operator * () const { return _p; }
83 Single_page_unique_ptr(void *p, unsigned long size) : _p(p), _s(size) {} in Single_page_unique_ptr()
93 reset(o._p, o._s);
[all …]
A Dlog.cc27 Pbuf() : _p(0) {} in Pbuf()
37 unsigned long _p; member in Pbuf
51 my_outnstring(_b, _p); in flush()
52 _p = 0; in flush()
58 x = (char*)memchr(_b, '\n', _p + n); in checknflush()
62 int rem = n - (x - _b + 1 - _p); in checknflush()
63 _p = x - _b + 1; in checknflush()
67 _p = rem; in checknflush()
70 _p += n; in checknflush()
80 n = vsnprintf(_b + _p, size() - _p, fmt, arg); in printf()
[all …]
A Dmalloc.h34 _p = c->alloc(sz, align); in Guarded_alloc()
35 if (L4_UNLIKELY(!_p)) in Guarded_alloc()
41 if (_p) in ~Guarded_alloc()
42 _c->free(_p); in ~Guarded_alloc()
48 T *ret = static_cast<T *>(_p); in release()
49 _p = 0; in release()
54 { return _p; } in get()
57 void *_p;
A Ddataspace_noncont.cc245 void set(void* _p) throw() { p = (unsigned long)_p; } in set() argument
294 L1 &_p = __p(offs); in alloc_page() local
295 if (!*_p) in alloc_page()
299 _p.set(a); in alloc_page()
303 return _p[l2_idx(offs)]; in alloc_page()
/l4re-core-master/libc_backends/lib/mount/
A Dmount.cc23 String(const char *s, const char *e) : _s(s), _e(e), _p(s) {} in String()
26 const char *p() const { return _p; } in p()
31 const char *i = _p; in next_space()
34 _p = i; in next_space()
35 return _p; in next_space()
39 while (_p < e() && isspace(*_p)) in eat_space()
40 _p++; in eat_space()
47 const char *_s, *_e, *_p; member
/l4re-core-master/l4re_vfs/include/
A Dvfs.h482 char const *_p;
486 Path() throw() : _p(0), _l(0) {} in Path()
488 explicit Path(char const *p) throw() : _p(p) in Path()
491 Path(char const *p, unsigned l) throw() : _p(p), _l(l) in Path()
500 { return reinterpret_cast<Invalid_ptr const *>(_p); }
503 char const *path() const { return _p; } in path()
512 for (; __is_sep(*_p) && _l; ++_p, --_l) in strip_sep()
523 return Path(_p, i); in first()
529 _p += r.length(); in strip_first()
596 char const *p = _p; in cmp_path()
[all …]
/l4re-core-master/cxx/lib/ipc/include/
A Dipc_stream243 T **_p;
251 explicit Msg_ptr(T *&p) : _p(&p) {}
252 void set(T *p) const { *_p = p; }

Completed in 14 milliseconds