OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:displayidx
(Results
1 - 4
of
4
) sorted by null
/development/simulator/wrapsim/
SimMgr.h
61
void wsLockDisplay(int
displayIdx
);
62
void wsUnlockDisplay(int
displayIdx
);
63
void wsPostDisplayUpdate(int
displayIdx
);
DevFb.c
22
int
displayIdx
;
39
static void configureInitialState(int
displayIdx
, FbState* fbState)
43
assert(
displayIdx
>= 0 &&
displayIdx
< gWrapSim.numDisplays);
45
width = gWrapSim.display[
displayIdx
].width;
46
height = gWrapSim.display[
displayIdx
].height;
48
displayIdx
, width, height, gWrapSim.display[
displayIdx
].shmemKey);
113
// state->
displayIdx
, state->vinfo.yoffset);
115
wsLockDisplay(state->
displayIdx
);
[
all
...]
SimMgr.c
521
void wsLockDisplay(int
displayIdx
)
523
assert(
displayIdx
>= 0 &&
displayIdx
< gWrapSim.numDisplays);
524
int semid = gWrapSim.display[
displayIdx
].semid;
532
void wsUnlockDisplay(int
displayIdx
)
534
assert(
displayIdx
>= 0 &&
displayIdx
< gWrapSim.numDisplays);
535
int semid = gWrapSim.display[
displayIdx
].semid;
912
void wsPostDisplayUpdate(int
displayIdx
)
921
setCommand(&msg, kCommandUpdateDisplay,
displayIdx
);
[
all
...]
/development/simulator/app/
PhoneWindow.cpp
243
int
displayIdx
;
246
displayIdx
= pViewInfo[i].GetDisplayIndex();
247
pPhoneDisplay = pPhoneData->GetPhoneDisplay(
displayIdx
);
248
//printf("View %d: display %d\n", i,
displayIdx
);
253
mpDeviceWindow[
displayIdx
]->SetSize(
362
int
displayIdx
;
364
displayIdx
= pPhoneData->GetPhoneDisplayIndex(pPhoneView->GetDisplayName());
365
if (
displayIdx
< 0)
368
pPhoneDisplay = pPhoneData->GetPhoneDisplay(
displayIdx
);
412
pInfo->SetDisplayIndex(
displayIdx
);
[
all
...]
Completed in 77 milliseconds