| /AOO42X/main/binaryurp/source/ |
| H A D | writer.cxx | 64 request(true), tid(theTid), oid(theOid), type(theType), member(theMember), in Item() 74 request(false), tid(theTid), member(theMember), setter(theSetter), in Item() 87 rtl::ByteSequence const & tid, rtl::OUString const & oid, in sendDirectRequest() argument 94 tid, oid, type, member, inArguments, false, in sendDirectRequest() 99 rtl::ByteSequence const & tid, css::uno::TypeDescription const & member, in sendDirectReply() argument 104 sendReply(tid, member, false, exception, returnValue,outArguments); in sendDirectReply() 108 rtl::ByteSequence const & tid, rtl::OUString const & oid, in queueRequest() argument 115 queue_.push_back(Item(tid, oid, type, member, inArguments, cc)); in queueRequest() 120 rtl::ByteSequence const & tid, in queueReply() argument 128 tid, member, setter, exception, returnValue, outArguments, in queueReply() [all …]
|
| H A D | reader.cxx | 232 rtl::ByteSequence tid(getTid(unmarshal, newTid)); in readMessage() local 233 lastTid_ = tid; in readMessage() 327 bridge_->handleRequestChangeRequest(tid, inArgs); in readMessage() 330 bridge_->handleCommitChangeRequest(tid, inArgs); in readMessage() 397 bridge_, tid, oid, obj, type, functionId, synchronous, memberTd, in readMessage() 403 bridge_->getThreadPool(), tid.getHandle(), req.get(), &request, in readMessage() 410 rtl::ByteSequence tid(getTid(unmarshal, (flags1 & 0x08) != 0)); in readReplyMessage() local 412 lastTid_ = tid; in readReplyMessage() 413 OutgoingRequest req(bridge_->lastOutgoingRequest(tid)); in readReplyMessage() 515 bridge_->getThreadPool(), tid.getHandle(), resp.get(), 0, in readReplyMessage()
|
| H A D | writer.hxx | 69 rtl::ByteSequence const & tid, rtl::OUString const & oid, 77 rtl::ByteSequence const & tid, 83 rtl::ByteSequence const & tid, rtl::OUString const & oid, 89 rtl::ByteSequence const & tid, 107 rtl::ByteSequence const & tid, rtl::OUString const & oid, 114 rtl::ByteSequence const & tid, 143 rtl::ByteSequence tid; // request + reply member
|
| H A D | outgoingrequests.cxx | 47 rtl::ByteSequence const & tid, OutgoingRequest const & request) in push() argument 50 map_[tid].push_back(request); in push() 53 OutgoingRequest OutgoingRequests::top(rtl::ByteSequence const & tid) { in top() argument 55 Map::iterator i(map_.find(tid)); in top() 66 void OutgoingRequests::pop(rtl::ByteSequence const & tid) throw () { in pop() argument 68 Map::iterator i(map_.find(tid)); in pop()
|
| H A D | bridge.cxx | 135 OutgoingRequests & requests, rtl::ByteSequence const & tid, 149 OutgoingRequests & requests, rtl::ByteSequence const & tid, in PopOutgoingRequest() argument 151 requests_(requests), tid_(tid), cleared_(false) in PopOutgoingRequest() 660 rtl::ByteSequence const & tid, std::vector< BinaryAny > const & inArguments) in handleRequestChangeRequest() argument 682 tid, protPropRequest_, false, in handleRequestChangeRequest() 695 tid, protPropRequest_, false, false, in handleRequestChangeRequest() 713 rtl::ByteSequence const & tid, std::vector< BinaryAny > const & inArguments) in handleCommitChangeRequest() argument 743 tid, protPropCommit_, exc, ret, std::vector< BinaryAny >()); in handleCommitChangeRequest() 755 tid, protPropCommit_, false, false, ret, std::vector< BinaryAny >(), in handleCommitChangeRequest() 768 OutgoingRequest Bridge::lastOutgoingRequest(rtl::ByteSequence const & tid) { in lastOutgoingRequest() argument [all …]
|
| H A D | outgoingrequests.hxx | 46 void push(rtl::ByteSequence const & tid, OutgoingRequest const & request); 48 OutgoingRequest top(rtl::ByteSequence const & tid); 50 void pop(rtl::ByteSequence const & tid) throw ();
|
| H A D | bridge.hxx | 156 rtl::ByteSequence const & tid, 161 rtl::ByteSequence const & tid, 164 OutgoingRequest lastOutgoingRequest(rtl::ByteSequence const & tid); 213 rtl::ByteSequence const & tid, rtl::OUString const & oid,
|
| H A D | unmarshal.cxx | 264 rtl::ByteSequence tid( in readTid() 273 if (tid.getLength() == 0) { in readTid() 284 state_.tidCache[idx] = tid; in readTid() 286 return tid; in readTid()
|
| H A D | marshal.cxx | 180 std::vector< unsigned char > * buffer, rtl::ByteSequence const & tid) in writeTid() argument 183 sal_uInt16 idx = state_.tidCache.add(tid, &found); in writeTid() 187 sal_Sequence * p = tid.getHandle(); in writeTid()
|
| H A D | incomingrequest.cxx | 54 rtl::Reference< Bridge > const & bridge, rtl::ByteSequence const & tid, in IncomingRequest() argument 60 bridge_(bridge), tid_(tid), oid_(oid), object_(object), type_(type), in IncomingRequest()
|
| H A D | marshal.hxx | 73 std::vector< unsigned char > * buffer, rtl::ByteSequence const & tid);
|
| H A D | incomingrequest.hxx | 49 rtl::Reference< Bridge > const & bridge, rtl::ByteSequence const & tid,
|
| /AOO42X/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/ |
| H A D | urp.java | 118 String oid, TypeDescription type, String function, ThreadId tid, in writeRequest() argument 137 return writeRequest(false, oid, type, function, tid, arguments); in writeRequest() 142 public void writeReply(boolean exception, ThreadId tid, Object result) in writeReply() argument 148 PendingRequests.Item pending = pendingIn.pop(tid); in writeReply() 163 if (!tid.equals(outL1Tid)) { in writeReply() 165 outL1Tid = tid; in writeReply() 167 tid = null; in writeReply() 170 if (tid != null) { in writeReply() 171 marshal.writeThreadId(tid); in writeReply() 476 ThreadId tid, Object[] arguments) in writeRequest() argument [all …]
|
| H A D | PendingRequests.java | 34 public synchronized void push(ThreadId tid, Item item) { in push() argument 35 Stack s = (Stack) map.get(tid); in push() 38 map.put(tid, s); in push() 43 public synchronized Item pop(ThreadId tid) { in pop() argument 44 Stack s = (Stack) map.get(tid); in pop() 47 map.remove(tid); in pop()
|
| /AOO42X/main/autodoc/source/ary/cpp/ |
| H A D | ca_type.cxx | 68 tid(0); in CheckIn_UsedType() local 71 tid = aStorage.Search_BuiltInType( in CheckIn_UsedType() 74 csv_assert(tid.IsValid()); in CheckIn_UsedType() 75 return aStorage[tid]; in CheckIn_UsedType() 78 tid = aStorage.UsedTypeIndex().Search(pass_type); in CheckIn_UsedType() 79 if (tid.IsValid()) in CheckIn_UsedType() 81 return aStorage[tid]; in CheckIn_UsedType()
|
| /AOO42X/main/autodoc/source/parser/cpp/ |
| H A D | all_toks.hxx | 74 #define DECL_TOKEN_CLASS(name,tid) \ argument 83 const INT16 Tid_##name = tid 129 #define DECL_TOKEN_CLASS_WITHTEXT(name,tid) \ argument 142 const INT16 Tid_##name = tid
|
| /AOO42X/main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/ |
| H A D | Protocol_Test.java | 296 String oid, TypeDescription type, String function, ThreadId tid, in writeRequest() argument 300 return protocol.writeRequest(oid, type, function, tid, arguments); in writeRequest() 303 public void writeReply(boolean exception, ThreadId tid, Object result) in writeReply() argument 306 protocol.writeReply(exception, tid, result); in writeReply()
|
| /AOO42X/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/ |
| H A D | IProtocol.java | 79 String oid, TypeDescription type, String function, ThreadId tid, in writeRequest() argument 93 void writeReply(boolean exception, ThreadId tid, Object result) in writeReply() argument
|
| /AOO42X/main/dtrans/source/os2/dnd/ |
| H A D | DragSource.cxx | 285 TID tid; in render() local 302 rc = WinQueryWindowProcess( pdxfer->hwndClient, &pid, &tid); in render()
|
| /AOO42X/main/graphite/ |
| H A D | graphite-2.3.1.patch | 146 FileFont::readTable(int /*TableId*/ tid, size_t & size) 148 const TableId tableId = TableId(tid);
|
| /AOO42X/extras/l10n/source/sv/ |
| H A D | localize.sdf | 205 …ace.Commands..uno:InsertDateTimeField Label 0 sv Datum och tid ... 2… 680 …ges\Error.ulf 0 LngText OOO_ERROR_15 0 sv Återstående tid: {[1] minuter }{[2]… 858 …ges\UIText.ulf 0 LngText OOO_UITEXT_44 0 sv Återstående tid: {[1] min }[2] sek … 1200 … 0 LngText OOO_CONTROL_244 0 sv Uppskattad återstående tid: 202004… 1557 …src 0 checkbox RID_DATETIME_DLG CB_TIME 0 sv Inkludera tid 20200… 1560 …alog RID_DATETIME_DLG HID_RPT_DATETIME_DLG 0 sv Datum och tid 20200… 1618 …noffice.apache.org/get-involved.html</a> för information om hur man bidrar tid och <a href="https:… 1690 … är att prenumerera på en eller flera e-postlistor, vara åskådare under en tid, och progressivt an… 8596 … 0 sv En inom citationstecken skriven text, som returnerar en tid i något av %PRODUCT… 9721 …tring RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STYLE 4 0 sv tid 2020041… [all …]
|
| /AOO42X/extras/l10n/source/da/ |
| H A D | localize.sdf | 680 …ages\Error.ulf 0 LngText OOO_ERROR_15 0 da Resterende tid: {[1] minutter }{[2… 858 …ages\UIText.ulf 0 LngText OOO_UITEXT_44 0 da Resterende tid: {[1] min }[2] sek … 1200 ….ulf 0 LngText OOO_CONTROL_244 0 da Anslået resterende tid: 202004… 2602 …enter. Afhængigt af størrelsen af dokumenterne kan denne proces tage noget tid. 20200… 2843 …LOCK HID_REDLINING_FILTER_IB_CLOCK 13 da - Sæt start dato/tid 20200411 15:09… 2854 … string SID_REDLIN_FILTER_PAGE STR_DATE_TIME_SPIN 178 da Start tid 20200… 2855 … string SID_REDLIN_FILTER_PAGE STR_DATE_TIME_SPIN1 178 da Slut tid 2020… 3441 …ED 0 da Det maksimale antal dokumenter, der kan åbnes på samme tid er overskredet. Du … 7999 …button DLG_MM_SELECTADDRESSBLOCK RB_ALWAYS 150 da Inkluder al~tid landet/regionen … 10784 … fixedtext RID_SCDLG_SOLVER_PROGRESS FT_TIMELIMIT 106 da (tid grænse # sekunder) … [all …]
|
| /AOO42X/extras/l10n/source/nn/ |
| H A D | localize.sdf | 1005 …rlr\formres.src 0 string RID_STR_TIMEMIN 0 nn Lågaste tid 2002-02… 1006 …rlr\formres.src 0 string RID_STR_TIMEMAX 0 nn Høgaste tid 2002-02… 1323 …nleg skanning brukt som førehandsvising i staden. Dette kan ta ganske lang tid. 2002-… 1665 …nstall.ulf 0 LngText IntroText3 0 nn Dette kan ta litt tid.. 2002-… 1674 …LngText StartInstallText2 0 nn Installasjonen kan ta litt tid … 20… 5967 … gjenoppretta alle opne dokument om maskina krasjar. Du kan velja kor lang tid det skal gå mellom … 7555 …ed\01\05020301.xhp 0 help par_id3145082 147 0 nn Dato + tid 2002-0… 7559 …red\01\05020301.xhp 0 help par_id3154527 151 0 nn Tid + tid 2002-… 9720 …SVXPAGE_TEXTANIMATION:TSB_AUTO\"\>$[officename] avgjer automatisk kor lang tid det skal gå før ein… 10210 …d3145345 7 0 nn Du kan filtrera med fleire feltnamn på same tid med knappen \<emph\… [all …]
|
| /AOO42X/extras/l10n/source/nb/ |
| H A D | localize.sdf | 205 …rface.Commands..uno:InsertDateTimeField Label 0 nb Dato og tid … 202… 1200 …s\Control.ulf 0 LngText OOO_CONTROL_244 0 nb Forventet tid igjen: … 3441 … 0 nb Det maksimale antallet dokumenter som kan være åpne til enhver tid har blitt nådd. Et … 8583 …_DESCRIPTIONS1.SC_OPCODE_GET_ACT_TIME 1 0 nb Gir gjeldende tid for datamaskinen. … 18469 …nstall.ulf 0 LngText IntroText3 0 nb Dette kan ta litt tid. 20200… 18478 …LngText StartInstallText2 0 nb Installasjonen kan ta litt tid … 20… 19984 …rlr\formres.src 0 string RID_STR_TIMEMIN 0 nb Laveste tid 2020041… 19985 …rlr\formres.src 0 string RID_STR_TIMEMAX 0 nb Høyeste tid 2020041… 20285 …nlig skanning brukt som forhåndsvisning i stedet. Dette kan ta ganske lang tid. 20200… 21653 …E&S_MAX 0 nb Prosessen kunne ikke gjennomføres innen fastsatt tid. 2020… [all …]
|
| /AOO42X/extras/l10n/source/kab/ |
| H A D | localize.sdf | 72833 …_OLD_TXT_PRINTERS 165 kab Tisagazin-agi zemrent ad ketrent. Fren tid i tebɣiḍ. …
|