Lines Matching refs:token

392 	\param token ID token of the bitmap to find
396 ServerApp::GetBitmap(int32 token) const
398 if (token < 1)
403 ServerBitmap* bitmap = _FindBitmap(token);
430 ServerApp::GetPicture(int32 token) const
432 if (token < 1)
437 ServerPicture* picture = _FindPicture(token);
656 int32 token;
659 link.Read<int32>(&token);
663 fDesktop->WindowAction(token, action);
743 // 1) int32 server token
796 // 1) int32 token
797 int32 token;
798 link.Read<int32>(&token);
802 ServerBitmap* bitmap = _FindBitmap(token);
805 Signature(), token));
819 int32 token;
820 if (link.Read<int32>(&token) != B_OK)
823 BReference<ServerBitmap> bitmap(GetBitmap(token), true);
826 "%" B_PRId32 "\n", Signature(), token));
909 int32 token = -1;
910 link.Read<int32>(&token);
913 if (ServerPicture* subPicture = _FindPicture(token))
931 int32 token;
932 if (link.Read<int32>(&token) == B_OK) {
935 ServerPicture* picture = _FindPicture(token);
945 int32 token;
947 if (link.Read<int32>(&token) == B_OK)
948 original.SetTo(GetPicture(token), true);
967 int32 token;
968 link.Read<int32>(&token);
969 BReference<ServerPicture> picture(GetPicture(token), true);
1084 // 2) int32 token ID of the cursor to set
1088 int32 token;
1091 if (link.Read<int32>(&token) != B_OK)
1097 fAppCursor.SetTo(fDesktop->GetCursorManager().FindCursor(token), false);
1131 // Find the corresponding view by the given token. It's ok
1256 // 1) int32 token ID of the cursor to reference
1258 int32 token;
1259 if (link.Read<int32>(&token) != B_OK)
1266 = fDesktop->GetCursorManager().FindCursor(token);
1280 // 1) int32 token ID of the cursor to delete
1282 int32 token;
1283 if (link.Read<int32>(&token) != B_OK)
1290 = fDesktop->GetCursorManager().FindCursor(token);
2973 // 1) int32 - window client token
3421 int32 token;
3422 link.Read<int32>(&token);
3432 BReference<ServerBitmap> bitmap(GetBitmap(token), true);
3689 // 1) int32 bitmap token (only for AS_CREATE_OFFSCREEN_WINDOW)
3695 // 7) int32 BHandler token of the window
3706 int32 token;
3718 link.Read<int32>(&token);
3738 clientReplyPort, looperPort, token, bitmap);
3743 looperPort, token);
3814 ServerApp::_FindBitmap(int32 token) const
3818 BitmapMap::const_iterator iterator = fBitmapMap.find(token);
3827 ServerApp::_FindPicture(int32 token) const
3831 PictureMap::const_iterator iterator = fPictureMap.find(token);