HomeSort by relevance Sort by last modified time
    Searched refs:shmkey (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/ui/surface/
transport_dib_gtk.cc 46 const int shmkey = shmget(IPC_PRIVATE, size, 0600); local
47 if (shmkey == -1) {
52 VLOG(1) << "Created SysV shared memory region " << shmkey;
55 void* address = shmat(shmkey, NULL /* desired address */, 0 /* flags */);
59 shmctl(shmkey, IPC_RMID, 0);
65 dib->key_.shmkey = shmkey;
80 TransportDIB* TransportDIB::CreateWithHandle(Handle shmkey) {
82 dib->key_.shmkey = shmkey;
    [all...]
transport_dib.h 88 Id() : shmkey(-1) {
92 return shmkey < other.shmkey;
96 return shmkey == other.shmkey;
99 int shmkey; member in struct:TransportDIB::Id
  /external/chromium_org/content/public/common/
common_param_traits.h 201 WriteParam(m, p.shmkey);
204 return ReadParam(m, iter, &r->shmkey);
208 LogParam(p.shmkey, l);
  /external/chromium_org/ui/base/x/
x11_util.cc 304 int shmkey = shmget(IPC_PRIVATE, 1, 0600); local
305 if (shmkey == -1) {
309 VLOG(1) << "Got shared memory segment " << shmkey;
312 void* address = shmat(shmkey, NULL, 0);
314 shmctl(shmkey, IPC_RMID, NULL);
318 shminfo.shmid = shmkey;
323 VLOG(1) << "X got shared memory segment " << shmkey;
325 LOG(WARNING) << "X failed to attach to shared memory segment " << shmkey;
330 LOG(WARNING) << "X failed to attach to shared memory segment " << shmkey;
334 VLOG(1) << "X attached to shared memory segment " << shmkey;
    [all...]
  /external/chromium_org/content/public/test/
mock_render_process_host.cc 152 return TransportDIB::Map(dib_id.shmkey);
  /external/chromium_org/content/browser/renderer_host/
render_process_host_impl.cc     [all...]

Completed in 245 milliseconds