Home
last modified time | relevance | path

Searched refs:tpl (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/Include/Efi/
DEfiSocketLib.h82 #define VERIFY_AT_TPL(tpl) \ argument
87 if ( PreviousTpl != tpl ) { \
90 PreviousTpl, tpl )); \
91 ASSERT ( PreviousTpl == tpl ); \
95 #define VERIFY_TPL(tpl) \ argument
100 if ( PreviousTpl > tpl ) { \
103 PreviousTpl, tpl )); \
104 ASSERT ( PreviousTpl <= tpl ); \
110 #define VERIFY_AT_TPL(tpl) ///< Verify that the TPL is at the correct level argument
111 #define VERIFY_TPL(tpl) ///< Verify that the TPL is at the correct level argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
DTftpServer.h104 #define VERIFY_TPL(tpl) \ argument
110 if ( PreviousTpl > tpl ) { \
111 DEBUG (( DEBUG_ERROR, "Current TPL: %d, New TPL: %d\r\n", PreviousTpl, tpl )); \
112 ASSERT ( PreviousTpl <= tpl ); \
118 #define VERIFY_TPL(tpl) argument
/device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772/
DAx88772.h105 #define VERIFY_TPL(tpl) \ argument
111 if ( PreviousTpl > tpl ) { \
112 DEBUG (( DEBUG_ERROR, "Current TPL: %d, New TPL: %d\r\n", PreviousTpl, tpl )); \
113 ASSERT ( PreviousTpl <= tpl ); \
119 #define VERIFY_TPL(tpl) argument
/device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772b/
DAx88772.h118 #define VERIFY_TPL(tpl) \ argument
124 if ( PreviousTpl > tpl ) { \
125 DEBUG (( DEBUG_ERROR, "Current TPL: %d, New TPL: %d\r\n", PreviousTpl, tpl )); \
126 ASSERT ( PreviousTpl <= tpl ); \
132 #define VERIFY_TPL(tpl) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/
DWebServer.h127 #define VERIFY_TPL(tpl) \ argument
133 if ( PreviousTpl > tpl ) { \
134 DEBUG (( DEBUG_ERROR, "Current TPL: %d, New TPL: %d\r\n", PreviousTpl, tpl )); \
135 ASSERT ( PreviousTpl <= tpl ); \
141 #define VERIFY_TPL(tpl) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_json.c385 PyObject *tpl; in _build_rval_index_tuple() local
398 tpl = PyTuple_New(2); in _build_rval_index_tuple()
399 if (tpl == NULL) { in _build_rval_index_tuple()
404 PyTuple_SET_ITEM(tpl, 0, rval); in _build_rval_index_tuple()
405 PyTuple_SET_ITEM(tpl, 1, pyidx); in _build_rval_index_tuple()
406 return tpl; in _build_rval_index_tuple()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_json.c385 PyObject *tpl; in _build_rval_index_tuple() local
398 tpl = PyTuple_New(2); in _build_rval_index_tuple()
399 if (tpl == NULL) { in _build_rval_index_tuple()
404 PyTuple_SET_ITEM(tpl, 0, rval); in _build_rval_index_tuple()
405 PyTuple_SET_ITEM(tpl, 1, pyidx); in _build_rval_index_tuple()
406 return tpl; in _build_rval_index_tuple()
/device/google/cuttlefish/tools/
Dcreate_base_image_arm.sh161 ${ANDROID_HOST_OUT}/bin/mkimage -n rk3399 -T rksd -d tpl/u-boot-tpl.bin ${idbloader}
/device/amlogic/yukawa/bootloader/scripts/
Dgenerate-bins-new.sh151 mv ${TMP}/u-boot.bin{,.sd.bin,.usb.bl2,.usb.tpl} ${TMP2}
/device/linaro/bootloader/OpenPlatformPkg/Drivers/Net/Pp2Dxe/
DPp2Dxe.c54 #define ReturnUnlock(tpl, status) do { gBS->RestoreTPL (tpl); return (status); } while(0) argument