OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wsm
(Results
1 - 7
of
7
) sorted by null
/hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
Device.h
51
wsmList_t wsmL2List; /**<
WSM
L2 Table */
123
* Allocate a block of contiguous
WSM
.
125
* @param
wsm
The CWsm object of the allocated memory.
130
CWsm **
wsm
143
* Get a
WSM
object for a given virtual address.
145
* @return the
WSM
object or NULL if no address has been found.
Device.cpp
67
// Free all allocated
WSM
descriptors
151
mcResult_t Device::allocateContiguousWsm(uint32_t len, CWsm **
wsm
)
159
assert(
wsm
!= NULL);
173
*
wsm
= new CWsm(virtAddr, len, handle, physAddr);
175
wsmL2List.push_back(*
wsm
);
ClientLib.cpp
627
uint8_t **
wsm
,
640
CHECK_NOT_NULL(
wsm
);
645
LOG_W(" Allocation of
WSM
failed");
649
*
wsm
= (uint8_t *)pWsm->virtAddr;
663
uint8_t *
wsm
671
LOG_I("===%s(%p)===", __FUNCTION__,
wsm
);
679
// find
WSM
object
680
CWsm_ptr pWsm = device->findContiguousWsm(
wsm
);
/hardware/samsung_slsi/exynos5/mobicore/daemon/Kernel/Platforms/Generic/
CMcKMod.cpp
446
LOG_I(" Resolving the
WSM
l2 for handle=%u", handle);
466
struct mc_ioctl_resolv_cont_wsm
wsm
;
local
468
wsm
.handle = handle;
470
LOG_I(" Resolving the contiguous
WSM
l2 for handle=%u", handle);
477
ret = ioctl(fdKMod, MC_IO_RESOLVE_CONT_WSM, &
wsm
);
481
*phys = (addr_t)
wsm
.phys;
482
*len =
wsm
.length;
/hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/public/
MobiCoreDriverApi.h
124
#define MC_DRV_ERR_TCI_GREATER_THAN_WSM MC_DRV_ERR_INVALID_PARAMETER /**< Requested TCI length is bigger than allocated
WSM
. */
135
#define MC_DRV_ERR_DAEMON_WSM_HANDLE_NOT_FOUND MC_DRV_ERR_WSM_NOT_FOUND /**< Daemon could not find
WSM
handle. */
305
* Allocate a block of world shared memory (
WSM
).
306
* The MC driver allocates a contiguous block of memory which can be used as
WSM
.
310
* @param [in] deviceId The ID of an opened device to retrieve the
WSM
from.
313
* @param [out]
wsm
Virtual address of the world shared memory block.
329
uint8_t **
wsm
,
334
* Free a block of world shared memory (
WSM
).
335
* The MC driver will free a block of world shared memory (
WSM
) previously allocated with
337
* is a valid
WSM
address
[
all
...]
/frameworks/base/services/java/com/android/server/wifi/
WifiNotificationController.java
96
WifiNotificationController(Context context, WifiStateMachine
wsm
) {
98
mWifiStateMachine =
wsm
;
/frameworks/base/wifi/java/android/net/wifi/
SupplicantStateTracker.java
74
public SupplicantStateTracker(Context c, WifiStateMachine
wsm
, WifiConfigStore wcs, Handler t) {
78
mWifiStateMachine =
wsm
;
Completed in 83 milliseconds