Searched refs:list (Results 101 - 125 of 4308) sorted by path

1234567891011>>

/external/blktrace/doc/
H A Dblktrace.tex396 -I \emph{devs file}& --input-devs=\emph{devs file}& Adds devices found in \emph{devs file} to list of devices to trace. \\
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_sock_sdp.c106 UINT16 list[1]; local
109 list[0] = UUID_SERVCLASS_PUBLIC_BROWSE_GROUP;
111 1, list)) )
159 /* add protocol list, including RFCOMM scn */
185 } /* end of setting mandatory protocol list */
270 /* add protocol list, including RFCOMM scn */
295 } /* end of setting mandatory protocol list */
370 /* add protocol list, including RFCOMM scn */
447 UINT16 list[1]; local
449 list[
[all...]
/external/bluetooth/bluedroid/osi/
H A DAndroid.mk12 ./src/list.c \
/external/bluetooth/bluedroid/osi/include/
H A Dlist.h17 void list_free(list_t *list);
20 bool list_is_empty(const list_t *list);
21 size_t list_length(const list_t *list);
22 void *list_front(const list_t *list);
23 void *list_back(const list_t *list);
26 bool list_insert_after(list_t *list, list_node_t *prev_node, void *data);
27 bool list_prepend(list_t *list, void *data);
28 bool list_append(list_t *list, void *data);
29 bool list_remove(list_t *list, void *data);
30 void list_clear(list_t *list);
[all...]
/external/bluetooth/bluedroid/osi/src/
H A Dfixed_queue.c24 #include "list.h"
29 list_t *list; member in struct:fixed_queue_t
41 ret->list = list_new(NULL);
42 if (!ret->list)
60 list_free(ret->list);
74 for (const list_node_t *node = list_begin(queue->list); node != list_end(queue->list); node = list_next(node))
77 list_free(queue->list);
91 list_append(queue->list, data);
103 void *ret = list_front(queue->list);
[all...]
H A Dlist.c3 #include "list.h"
18 static list_node_t *list_free_node_(list_t *list, list_node_t *node);
20 // Returns a new, empty list. Returns NULL if not enough memory could be allocated
21 // for the list structure. The returned list must be freed with |list_free|. The
22 // |callback| specifies a function to be called whenever a list element is removed
23 // from the list. It can be used to release resources held by the list element, e.g.
27 list_t *list = (list_t *)calloc(sizeof(list_t), 1); local
28 if (list)
35 list_free(list_t *list) argument
45 list_is_empty(const list_t *list) argument
51 list_length(const list_t *list) argument
58 list_front(const list_t *list) argument
67 list_back(const list_t *list) argument
74 list_insert_after(list_t *list, list_node_t *prev_node, void *data) argument
96 list_prepend(list_t *list, void *data) argument
116 list_append(list_t *list, void *data) argument
141 list_remove(list_t *list, void *data) argument
169 list_clear(list_t *list) argument
183 list_foreach(const list_t *list, list_iter_cb callback) argument
197 list_begin(const list_t *list) argument
206 list_end(UNUSED_ATTR const list_t *list) argument
227 list_free_node_(list_t *list, list_node_t *node) argument
[all...]
/external/bluetooth/bluedroid/osi/test/
H A Dlist_test.cpp4 #include "list.h"
9 list_t *list = list_new(NULL); local
10 ASSERT_TRUE(list != NULL);
14 // In this test we just verify that list_free is callable with a valid list.
15 list_t *list = list_new(NULL); local
16 list_free(list);
25 list_t *list = list_new(NULL); local
26 EXPECT_TRUE(list_is_empty(list));
27 list_free(list);
31 list_t *list local
37 list_t *list = list_new(NULL); local
45 list_t *list = list_new(NULL); local
53 list_t *list = list_new(NULL); local
63 list_t *list = list_new(NULL); local
73 list_t *list = list_new(NULL); local
85 list_t *list = list_new(NULL); local
97 list_t *list = list_new(NULL); local
111 list_t *list = list_new(NULL); local
125 list_t *list = list_new(NULL); local
138 list_t *list = list_new(NULL); local
144 list_t *list = list_new(NULL); local
[all...]
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_utils.c179 ** Description Find the app id in on the new service changed list
449 ** Description Update the the last primary info for the service list info
474 ** Description update an element in the service list.
494 ** Description add an service to the list in ascending
512 /* this is an empty list */
535 /* if not the first in list */
561 ** Description Remove a service from the list
600 ** Description add an service handle range to the list in decending
617 /* this is an empty list */
665 ** Description Remove an service handle range from the list
1476 UINT16 list = UUID_SERVCLASS_PUBLIC_BROWSE_GROUP; local
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DX509AttributeCertificateHolder.java169 List list = new ArrayList();
176 list.add(attr);
180 if (list.size() == 0)
185 return (Attribute[])list.toArray(new Attribute[list.size()]);
226 * Returns a list of ASN1ObjectIdentifier objects representing the OIDs of the
229 * @return a list of extension OIDs.
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/
H A DJcaCertStore.java37 List list = new ArrayList(collection.size());
49 list.add(new X509CertificateHolder(cert.getEncoded()));
58 list.add((X509CertificateHolder)o);
62 return list;
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSignerInformationStore.java25 List list = (ArrayList)table.get(sid);
26 if (list == null)
28 list = new ArrayList(1);
29 table.put(sid, list);
32 list.add(signer);
48 Collection list = getSigners(selector);
50 return list.size() == 0 ? null : (SignerInformation) list.iterator().next();
104 List list = (ArrayList)table.get(selector);
106 return list
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DX509CertificateObject.java363 List list = new ArrayList();
367 list.add(((ASN1ObjectIdentifier)seq.getObjectAt(i)).getId());
370 return Collections.unmodifiableList(list);
864 List list = new ArrayList();
865 list.add(Integers.valueOf(genName.getTagNo()));
871 list.add(genName.getEncoded());
875 list.add(X509Name.getInstance(genName.getName()).toString(true, X509Name.DefaultSymbols));
881 list.add(((ASN1String)genName.getName()).getString());
884 list.add(ASN1ObjectIdentifier.getInstance(genName.getName()).getId());
897 list
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DCertPathValidatorUtilities.java256 List list = (List)it.next();
257 if (list.get(0).equals(Integers.valueOf(GeneralName.uniformResourceIdentifier)))
260 String temp = (String)list.get(1);
1311 * <code>PublicKey</code>. The list is searched upwards, meaning the end
1323 * @return The public key of the certificate in list position
H A DX509CertificateObject.java361 List list = new ArrayList();
365 list.add(((ASN1ObjectIdentifier)seq.getObjectAt(i)).getId());
368 return Collections.unmodifiableList(list);
862 List list = new ArrayList();
863 list.add(Integers.valueOf(genName.getTagNo()));
869 list.add(genName.getEncoded());
873 list.add(X509Name.getInstance(genName.getName()).toString(true, X509Name.DefaultSymbols));
879 list.add(((ASN1String)genName.getName()).getString());
882 list.add(ASN1ObjectIdentifier.getInstance(genName.getName()).getId());
895 list
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509V2AttributeCertificate.java292 List list = new ArrayList();
299 list.add(attr);
303 if (list.size() == 0)
308 return (X509Attribute[])list.toArray(new X509Attribute[list.size()]);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
H A DX509ExtensionUtil.java65 List list = new ArrayList();
66 list.add(Integers.valueOf(genName.getTagNo()));
72 list.add(genName.getName().toASN1Primitive());
75 list.add(X500Name.getInstance(genName.getName()).toString());
80 list.add(((ASN1String)genName.getName()).getString());
83 list.add(ASN1ObjectIdentifier.getInstance(genName.getName()).getId());
86 list.add(DEROctetString.getInstance(genName.getName()).getOctets());
92 temp.add(list);
/external/bzip2/
H A Dbzgrep41 list=0
45 *l*) list=1
59 if test $list -eq 1; then
H A Dbzip.css41 list-style: url("/images/li-blue.png");
47 list-style-type: none;
48 list-style-image: none;
/external/ceres-solver/
H A DAndroid.mk9 # this list of conditions and the following disclaimer.
11 # this list of conditions and the following disclaimer in the documentation
/external/ceres-solver/internal/ceres/
H A Dlow_rank_inverse_hessian.cc9 // this list of conditions and the following disclaimer.
11 // this list of conditions and the following disclaimer in the documentation
31 #include <list>
102 // Once the size of the list reaches max_num_corrections_, simulate
103 // a circular buffer by removing the first element of the list and
129 for (std::list<int>::const_reverse_iterator it = indices_.rbegin();
176 for (std::list<int>::const_iterator it = indices_.begin();
H A Dlow_rank_inverse_hessian.h9 // this list of conditions and the following disclaimer.
11 // this list of conditions and the following disclaimer in the documentation
37 #include <list>
102 std::list<int> indices_;
/external/ceres-solver/jni/
H A DAndroid.mk9 # this list of conditions and the following disclaimer.
11 # this list of conditions and the following disclaimer in the documentation
H A DApplication.mk9 # this list of conditions and the following disclaimer.
11 # this list of conditions and the following disclaimer in the documentation
/external/chromium-libpac/src/
H A Dnet_util.h16 #include <list>
/external/chromium-libpac/test/
H A Dproxy_resolver_v8_unittest.cc21 // list, for later verification.
109 void addString(std::vector<std::string>* list, std::string str) { argument
111 list->push_back("DIRECT");
113 list->push_back(str.substr(6));

Completed in 418 milliseconds

1234567891011>>