HomeSort by relevance Sort by last modified time
    Searched defs:pset (Results 1 - 8 of 8) sorted by null

  /external/libdrm/tests/planetest/
modeset.c 18 drmModePropertySetPtr pset; local
30 pset = drmModePropertySetAlloc();
31 if (!pset) {
36 ret = drmModePropertySetAdd(pset, crtc->crtc->crtc_id,
38 drmModePropertySetAdd(pset, crtc->crtc->crtc_id,
40 drmModePropertySetAdd(pset, conn->conn->connector_id,
43 printf("Failed to add blob %d to pset", create_blob.blob_id);
44 drmModePropertySetFree(pset);
49 NULL, pset);
51 drmModePropertySetFree(pset);
    [all...]
atomictest.c 50 drmModePropertySetPtr pset; local
103 pset = drmModePropertySetAlloc();
104 if (!pset) {
119 ret = set_sp_plane_pset(dev, plane[j], pset, test_crtc,
128 DRM_MODE_PAGE_FLIP_EVENT, NULL, pset);
142 drmModePropertySetFree(pset);
  /external/drm_hwcomposer/
drmdisplaycompositor.cpp 432 drmModeAtomicReqPtr pset = drmModeAtomicAlloc(); local
433 if (!pset) {
443 ret = drmModeAtomicAddProperty(pset, plane->id(),
445 drmModeAtomicAddProperty(pset, plane->id(), plane->fb_property().id(),
448 ALOGE("Failed to add plane %d disable to pset", plane->id());
449 drmModeAtomicFree(pset);
454 ret = drmModeAtomicCommit(drm_->fd(), pset, 0, drm_);
456 ALOGE("Failed to commit pset ret=%d\n", ret);
457 drmModeAtomicFree(pset); variable
461 drmModeAtomicFree(pset); variable
    [all...]
  /external/iputils/
rarpd.c 565 struct pollfd pset[2]; local
612 pset[0].fd = socket(PF_PACKET, SOCK_DGRAM, 0);
618 if (ioctl(pset[0].fd, SIOCGIFINDEX, &ifr)) {
625 pset[1].fd = -1;
627 pset[1].fd = socket(PF_PACKET, SOCK_DGRAM, 0);
628 if (pset[1].fd >= 0) {
629 load_arp_bpflet(pset[1].fd);
634 if (pset[1].fd >= 0) {
640 if (bind(pset[1].fd, (struct sockaddr*)&sll, sizeof(sll)) < 0) {
641 close(pset[1].fd)
    [all...]
ping_common.c 791 struct pollfd pset; local
792 pset.fd = icmp_sock;
793 pset.events = POLLIN|POLLERR;
794 pset.revents = 0;
795 if (poll(&pset, 1, next) < 1 ||
796 !(pset.revents&(POLLIN|POLLERR)))
  /external/iproute2/misc/
arpd.c 64 struct pollfd pset[2]; variable in typeref:struct:pollfd
234 if (sendto(pset[0].fd, buf, p-buf, 0, (struct sockaddr*)&sll, sizeof(sll)) < 0)
495 n = recvfrom(pset[0].fd, buf, sizeof(buf), MSG_DONTWAIT,
764 pset[0].fd = socket(PF_PACKET, SOCK_DGRAM, 0);
765 if (pset[0].fd < 0) {
776 if (bind(pset[0].fd, (struct sockaddr*)&sll, sizeof(sll)) < 0) {
786 pset[1].fd = rth.fd;
802 pset[0].events = EVENTS;
803 pset[0].revents = 0;
804 pset[1].events = EVENTS
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-darwin.c 5324 mach_port_name_t pset; member in struct:__anon35668
5845 mach_port_name_t pset; member in struct:__anon35689
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
objcopy.c 1790 struct section_list *pset; local
    [all...]

Completed in 2050 milliseconds