Home
last modified time | relevance | path

Searched refs:dlog (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/gpu/drm/clients/
H A Ddrm_log.c235 static void drm_log_init_client(struct drm_log *dlog) in drm_log_init_client() argument
237 struct drm_client_dev *client = &dlog->client; in drm_log_init_client()
242 dlog->probed = true; in drm_log_init_client()
251 dlog->scanout = kcalloc(max_modeset, sizeof(*dlog->scanout), GFP_KERNEL); in drm_log_init_client()
252 if (!dlog->scanout) in drm_log_init_client()
259 if (drm_log_setup_modeset(client, mode_set, &dlog->scanout[n_modeset])) in drm_log_init_client()
270 dlog->n_scanout = n_modeset; in drm_log_init_client()
275 drm_client_buffer_delete(dlog->scanout[i].buffer); in drm_log_init_client()
278 kfree(dlog->scanout); in drm_log_init_client()
279 dlog->scanout = NULL; in drm_log_init_client()
[all …]
/linux/tools/power/pm-graph/
H A Dsleepgraph.py979 def dlog(self, text): member in SystemValues
1131 self.dlog('[%s]' % cmdline)
1394 self.dlog('start ftrace tracing')
1397 self.dlog('start the process monitor')
1402 self.dlog('stop the process monitor')
1404 self.dlog('stop ftrace tracing')
5489 sv.dlog('wifi check, connected device is "%s"' % wifi)
5496 sv.dlog('xset display %s, ret = %d' % (sv.display, ret))
5501 sv.dlog('syncing filesystems')
5503 sv.dlog('read dmesg')
[all …]
/linux/tools/testing/selftests/kvm/s390/
H A Ducontrol_test.c226 struct kvm_dirty_log dlog; in TEST_F() local
229 rc = ioctl(self->vm_fd, KVM_GET_DIRTY_LOG, &dlog); in TEST_F()