HomeSort by relevance Sort by last modified time
    Searched defs:outgoing (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/cc/trees/
layer_sorter.h 60 std::vector<GraphEdge*> outgoing; member in struct:cc::GraphNode
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
tcpport.cc 88 // Check if we are allowed to make outgoing TCP connections
234 bool outgoing = (socket_ == NULL); local
235 if (outgoing) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.h 67 Edge *next[2]; // next edge outgoing/incident from/to origin/target
115 inline EdgeIterator outgoing(bool reverse = false) const;
207 Graph::EdgeIterator Graph::Node::outgoing(bool reverse) const function in class:nv50_ir::Graph::Node
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.h 67 Edge *next[2]; // next edge outgoing/incident from/to origin/target
115 inline EdgeIterator outgoing(bool reverse = false) const;
207 Graph::EdgeIterator Graph::Node::outgoing(bool reverse) const function in class:nv50_ir::Graph::Node
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 38 * View that draws one or more symbols for different types of calls (missed calls, outgoing etc).
112 return mResources.outgoing;
159 * Drawable respresenting an outgoing call.
161 public final Drawable outgoing; field in class:CallTypeIconsView.Resources
196 // Create a rotated instance of the call arrow for outgoing calls.
197 outgoing = BitmapUtil.getRotatedDrawable(r, R.drawable.ic_call_arrow, 180f);
198 outgoing.setColorFilter(r.getColor(R.color.answered_call), PorterDuff.Mode.MULTIPLY);
  /cts/tools/dasm/src/java_cup/
lalr_state.java 281 symbol_set outgoing; local
317 outgoing = new symbol_set();
324 if (sym != null) outgoing.add(sym);
328 for (s = outgoing.all(); s.hasMoreElements(); )
510 /* consider each outgoing transition */
  /external/mtpd/
pptp.c 132 } incoming, outgoing; variable in typeref:struct:packet
137 memset(outgoing.buffer, 0, length);
138 outgoing.length = length;
139 outgoing.header.length = htons(length);
140 outgoing.header.type = CONTROL_MESSAGE;
141 outgoing.header.cookie = MAGIC_COOKIE;
142 outgoing.message = htons(message);
147 send(the_socket, outgoing.buffer, outgoing.length, 0);
223 outgoing.sccrq.protocol_version = PROTOCOL_VERSION
    [all...]
l2tp.c 119 } incoming, outgoing; variable in typeref:struct:packet
130 uint16_t *p = (uint16_t *)outgoing.buffer;
141 outgoing.message = message;
142 outgoing.length = MESSAGE_HEADER_SIZE;
148 struct attribute *p = (struct attribute *)&outgoing.buffer[outgoing.length];
153 outgoing.length += ATTRIBUTE_HEADER_SIZE + size;
168 uint16_t *p = (uint16_t *)outgoing.buffer;
169 p[1] = htons(outgoing.length);
170 send(the_socket, outgoing.buffer, outgoing.length, 0)
    [all...]
  /bionic/libc/kernel/uapi/linux/
isdn.h 109 int outgoing; member in struct:__anon549
  /development/ndk/platforms/android-L/include/linux/
isdn.h 109 int outgoing; member in struct:__anon2147
  /external/kernel-headers/original/uapi/linux/
isdn.h 85 #define ISDN_USAGE_OUTGOING 128 /* This bit is set, if channel is outgoing */
105 int outgoing; member in struct:__anon26926
  /packages/services/Telecomm/src/com/android/server/telecom/
PhoneAccountRegistrar.java 116 * Retrieves the default outgoing phone account supporting the specified uriScheme.
117 * @param uriScheme The URI scheme for the outgoing call.
132 List<PhoneAccountHandle> outgoing = getCallCapablePhoneAccounts(uriScheme); local
133 switch (outgoing.size()) {
139 return outgoing.get(0);
148 // Return the registered outgoing default iff it still exists (we keep a sticky
163 // Asking to clear the default outgoing is a valid request
175 Log.w(this, "Trying to set nonexistent default outgoing %s",
182 Log.w(this, "Trying to set non-call-provider default outgoing %s",
499 * The account selected by the user to be employed by default for making outgoing calls
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
isdn.h 84 #define ISDN_USAGE_OUTGOING 128 /* This bit is set, if channel is outgoing */
104 int outgoing; member in struct:__anon45837
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
isdn.h 84 #define ISDN_USAGE_OUTGOING 128 /* This bit is set, if channel is outgoing */
104 int outgoing; member in struct:__anon47573
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/
isdn.h 109 int outgoing; member in struct:__anon74212
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/
isdn.h 109 int outgoing; member in struct:__anon75521
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/
isdn.h 109 int outgoing; member in struct:__anon76829
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.ecf.provider.filetransfer_3.2.0.v20130604-1622.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.provider.filetransfer_3.2.0.v20130604-1622.jar 
  /external/clang/lib/CodeGen/
CGStmt.cpp 105 llvm::BasicBlock *outgoing = Builder.GetInsertBlock(); local
106 assert(outgoing && "expression emission cleared block!");
120 if (incoming != outgoing && outgoing->use_empty()) {
121 outgoing->eraseFromParent();
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupFinal.java 82 * -e OUTGOING smtp+ssl+://test_account:test_password@smtp.gmail.com
94 * and the appropriate incoming/outgoing information will be filled in automatically.
103 private static final String EXTRA_CREATE_ACCOUNT_OUTGOING = "OUTGOING";
145 // User is entering outgoing settings
147 // We're checking outgoing settings
277 * outgoing: The URI-style string defining the outgoing account
283 final String outgoing = intent.getStringExtra(EXTRA_CREATE_ACCOUNT_OUTGOING); local
294 TextUtils.isEmpty(incoming) || TextUtils.isEmpty(outgoing));
300 "USER, INCOMING, OUTGOING, or EMAIL and PASSWORD")
    [all...]
  /external/valgrind/main/include/vki/
vki-linux.h 1599 int outgoing; member in struct:__anon36645
    [all...]

Completed in 1820 milliseconds

1 2