Home
last modified time | relevance | path

Searched refs:tid (Results 1 – 23 of 23) sorted by relevance

/aoo4110/main/binaryurp/source/
H A Dwriter.cxx87 rtl::ByteSequence const & tid, rtl::OUString const & oid, in sendDirectRequest() argument
94 tid, oid, type, member, inArguments, false, in sendDirectRequest()
108 rtl::ByteSequence const & tid, rtl::OUString const & oid, in queueRequest() argument
120 rtl::ByteSequence const & tid, in queueReply() argument
266 bool newTid = tid != lastTid_; in sendRequest()
292 marshal_.writeTid(&buf, tid); in sendRequest()
355 lastTid_ = tid; in sendRequest()
359 rtl::ByteSequence const & tid, in sendReply() argument
366 bool newTid = tid != lastTid_; in sendReply()
370 marshal_.writeTid(&buf, tid); in sendReply()
[all …]
H A Doutgoingrequests.cxx47 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 Dwriter.hxx69 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 Dreader.cxx232 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 Dbridge.cxx135 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()
682 tid, protPropRequest_, false, in handleRequestChangeRequest()
695 tid, protPropRequest_, false, false, in handleRequestChangeRequest()
743 tid, protPropCommit_, exc, ret, std::vector< BinaryAny >()); in handleCommitChangeRequest()
768 OutgoingRequest Bridge::lastOutgoingRequest(rtl::ByteSequence const & tid) { in lastOutgoingRequest() argument
769 OutgoingRequest req(outgoingRequests_.top(tid)); in lastOutgoingRequest()
770 outgoingRequests_.pop(tid); in lastOutgoingRequest()
930 rtl::ByteSequence const & tid, rtl::OUString const & oid, in sendRequest() argument
[all …]
H A Doutgoingrequests.hxx46 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 Dbridge.hxx156 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 Dunmarshal.cxx264 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 Dmarshal.cxx180 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 Dincomingrequest.cxx54 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 Dmarshal.hxx73 std::vector< unsigned char > * buffer, rtl::ByteSequence const & tid);
H A Dincomingrequest.hxx49 rtl::Reference< Bridge > const & bridge, rtl::ByteSequence const & tid,
/aoo4110/main/jurt/com/sun/star/lib/uno/protocols/urp/
H A Durp.java163 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
525 if (!tid.equals(outL1Tid)) { in writeRequest()
528 outL1Tid = tid; in writeRequest()
530 tid = null; in writeRequest()
558 if (tid != null) { in writeRequest()
[all …]
H A DPendingRequests.java34 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()
/aoo4110/main/autodoc/source/ary/cpp/
H A Dca_type.cxx68 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()
/aoo4110/main/autodoc/source/parser/cpp/
H A Dall_toks.hxx74 #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
/aoo4110/main/jurt/test/com/sun/star/lib/uno/protocols/urp/
H A DProtocol_Test.java296 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()
/aoo4110/main/jurt/com/sun/star/lib/uno/environments/remote/
H A DIProtocol.java79 String oid, TypeDescription type, String function, ThreadId tid, in writeRequest() argument
93 void writeReply(boolean exception, ThreadId tid, Object result) in writeReply() argument
/aoo4110/main/graphite/
H A Dgraphite-2.3.1.patch146 FileFont::readTable(int /*TableId*/ tid, size_t & size)
148 const TableId tableId = TableId(tid);
/aoo4110/extras/l10n/source/sv/
H A Dlocalize.sdf8026 sc source\ui\src\scfuncs.src 0 string RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STYLE 4 0 sv tid
11834 sfx2 source\dialog\versdlg.src 0 fixedtext DLG_VERSIONS FT_DATETIME 60 sv Datum och tid 201306…
11843 sfx2 source\dialog\versdlg.src 0 fixedtext DLG_COMMENTS FT_DATETIME 168 sv Datum och tid : …
14435 sd source\ui\app\strings.src 0 string STR_FIELD_PLACEHOLDER_DATETIME 175 sv <datum/tid> 20130…
15280 forms source\resource\xforms.src 0 string RID_STR_DATATYPE_DATETIME 0 sv Datum och tid 201306…
34960 helpcontent2 source\text\simpress\01\03151100.xhp 0 help par_idN10571 0 sv Datum/tid 20130618…
34988 helpcontent2 source\text\simpress\01\03152000.xhp 0 help par_idN1072D 0 sv Datum och tid 2013…
37012 …xt/scalc/guide/calc_date.xhp\" name=\"Beräkna med datum och tid\"\>Beräkna med datum och tid\</lin…
38696 helpcontent2 source\text\scalc\01\02150000.xhp 0 help hd_id3155764 11 0 sv Datum och tid 20130…
39129 …och tid; funktioner\</bookmark_value\>\<bookmark_value\>Funktioner; datum och tid\</bookmark_value…
[all …]
/aoo4110/extras/l10n/source/da/
H A Dlocalize.sdf7141 …dlin.src 0 string SID_REDLIN_FILTER_PAGE STR_DATE_TIME_SPIN 178 da Start tid 20130618 17:22:18
7142 …dlin.src 0 string SID_REDLIN_FILTER_PAGE STR_DATE_TIME_SPIN1 178 da Slut tid 20130618 17:22:18
10823 helpcontent2 source\text\scalc\guide\calc_date.xhp 0 help tit 0 da Beregninger med dato og tid. …
10825 …scalc/guide/calc_date.xhp\" name=\"Beregninger med dato og tid\"\>Beregninger med dato og tid\</li…
33520 helpcontent2 source\text\shared\02\01170101.xhp 0 help hd_id3154835 127 0 da Højeste tid 20130…
33547 helpcontent2 source\text\shared\02\01170101.xhp 0 help hd_id3153298 135 0 da Mindste tid 20130…
33548 …TIMEMIN\" visibility=\"hidden\"\>Afgør minimum tid som en bruger kan indtaste.\</ahelp\> Afgør min…
37365 helpcontent2 source\text\shared\01\05020301.xhp 0 help par_id3145082 147 0 da Dato + tid 20130…
37369 helpcontent2 source\text\shared\01\05020301.xhp 0 help par_id3154527 151 0 da Tid + tid 201306…
47985 helpcontent2 source\text\sbasic\shared\03030206.xhp 0 help par_id3145800 34 0 da b1 = "Slut tid" …
[all …]
/aoo4110/extras/l10n/source/nn/
H A Dlocalize.sdf1005 extensions source\propctrlr\formres.src 0 string RID_STR_TIMEMIN 0 nn Lågaste tid 2002-02-02 …
1006 extensions source\propctrlr\formres.src 0 string RID_STR_TIMEMAX 0 nn Høgaste tid 2002-02-02 …
1665 setup_native source\mac\macinstall.ulf 0 LngText IntroText3 0 nn Dette kan ta litt tid.. 2002…
1674 …install.ulf 0 LngText StartInstallText2 0 nn Installasjonen kan ta litt tid … 2002-02-02 02:…
7555 helpcontent2 source\text\shared\01\05020301.xhp 0 help par_id3145082 147 0 nn Dato + tid 2002-…
7559 helpcontent2 source\text\shared\01\05020301.xhp 0 help par_id3154527 151 0 nn Tid + tid 2002-0…
18435 …nDialog.src 0 fixedtext RID_TP_CUSTOMANIMATION_EFFECT FT_TEXT_DELAY 0 nn tid mellom teikn 200…
21563 …ndows\msi_languages\Control.ulf 0 LngText OOO_CONTROL_244 0 nn Forventa tid att: 2002-02-02 …
26883 …ID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_ACT_TIME 1 0 nn Gir gjeldande tid for datamaskina. …
31350 …\conn_shared_res.src 0 string STR_TIMEOUT_WAITING 0 nn Det tok for lang tid å venta på resultat…
[all …]
/aoo4110/extras/l10n/source/nb/
H A Dlocalize.sdf12298 extensions source\propctrlr\formres.src 0 string RID_STR_TIMEMIN 0 nb Laveste tid 20130618 17…
12299 extensions source\propctrlr\formres.src 0 string RID_STR_TIMEMAX 0 nb Høyeste tid 20130618 17…
15294 setup_native source\mac\macinstall.ulf 0 LngText IntroText3 0 nb Dette kan ta litt tid. 20130…
15303 …install.ulf 0 LngText StartInstallText2 0 nb Installasjonen kan ta litt tid ... 20130618 17:…
49699 … 0 help par_id0514200811525257 0 nb OpenDocument-formatet utvikles over tid. 20130618 17:22:…
52922 helpcontent2 source\text\shared\01\05020301.xhp 0 help par_id3145082 147 0 nb Dato + tid 20130…
52926 helpcontent2 source\text\shared\01\05020301.xhp 0 help par_id3154527 151 0 nb Tid + tid 201306…
56696 helpcontent2 source\text\shared\02\01170101.xhp 0 help hd_id3154835 127 0 nb Høyeste tid 20130…
56723 helpcontent2 source\text\shared\02\01170101.xhp 0 help hd_id3153298 135 0 nb Minste tid 201306…
66318 …\conn_shared_res.src 0 string STR_TIMEOUT_WAITING 0 nb Det tok for lang tid å vente på resultat…
[all …]

Completed in 3119 milliseconds