HomeSort by relevance Sort by last modified time
    Searched refs:nm (Results 51 - 75 of 239) sorted by null

1 23 4 5 6 7 8 910

  /external/harfbuzz_ng/src/
check-defs.sh 10 if which nm 2>/dev/null >/dev/null; then
13 echo "check-defs.sh: 'nm' not found; skipping test"
24 EXPORTED_SYMBOLS="`nm "$so" | grep ' [BCDGINRSTVW] ' | grep -v ' _fini\>\| _init\>\| _fdata\>\| _ftext\>\| _fbss\>\| __bss_start\>\| __bss_start__\>\| __bss_end__\>\| _edata\>\| _end\>\| _bss_end__\>\| __end__\>' | cut -d' ' -f3`"
  /external/icu/icu4c/source/tools/memcheck/
ICUMemCheck.pl 48 $symbols = `nm -u -C $f`;
  /external/libcxx/test/localization/locale.categories/category.time/locale.time.put.byname/
put1.pass.cpp 17 // explicit time_put_byname(const char* nm, size_t refs = 0);
18 // explicit time_put_byname(const string& nm, size_t refs = 0);
36 explicit my_facet(const std::string& nm, std::size_t refs = 0)
37 : F(nm, refs) {}
  /external/libunwind/tests/
run-coredump-unwind 18 nm -D "$binary" --format=posix --defined-only | awk '{ print $1 }' | sort > "$dynsyms"
20 nm "$debuginfo" --format=posix --defined-only | awk '{ if ($2 == "T" || $2 == "t") print $1 }' | sort > "$funcsyms"
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
v3_ncons.c 80 static int nc_dn(X509_NAME *sub, X509_NAME *nm);
246 X509_NAME *nm;
248 nm = X509_get_subject_name(x);
250 if (X509_NAME_entry_count(nm) > 0)
254 gntmp.d.directoryName = nm;
269 i = X509_NAME_get_index_by_NID(nm,
274 ne = X509_NAME_get_entry(nm, i);
381 static int nc_dn(X509_NAME *nm, X509_NAME *base)
384 if (nm->modified && i2d_X509_NAME(nm, NULL) < 0
    [all...]
v3_alt.c 348 X509_NAME *nm; local
360 if(ctx->subject_cert) nm = X509_get_subject_name(ctx->subject_cert);
361 else nm = X509_REQ_get_subject_name(ctx->subject_req);
365 while((i = X509_NAME_get_index_by_NID(nm,
367 ne = X509_NAME_get_entry(nm, i);
371 X509_NAME_delete_entry(nm, i);
598 X509_NAME *nm; local
599 if (!(nm = X509_NAME_new()))
606 X509_NAME_free(nm);
610 ret = X509V3_NAME_from_section(nm, sk, MBSTRING_ASC)
    [all...]
  /external/openssl/crypto/x509v3/
v3_ncons.c 77 static int nc_dn(X509_NAME *sub, X509_NAME *nm);
242 X509_NAME *nm;
244 nm = X509_get_subject_name(x);
246 if (X509_NAME_entry_count(nm) > 0)
250 gntmp.d.directoryName = nm;
265 i = X509_NAME_get_index_by_NID(nm,
270 ne = X509_NAME_get_entry(nm, i);
376 static int nc_dn(X509_NAME *nm, X509_NAME *base)
379 if (nm->modified && i2d_X509_NAME(nm, NULL) < 0
    [all...]
v3_alt.c 345 X509_NAME *nm; local
357 if(ctx->subject_cert) nm = X509_get_subject_name(ctx->subject_cert);
358 else nm = X509_REQ_get_subject_name(ctx->subject_req);
362 while((i = X509_NAME_get_index_by_NID(nm,
364 ne = X509_NAME_get_entry(nm, i);
368 X509_NAME_delete_entry(nm, i);
595 X509_NAME *nm; local
596 if (!(nm = X509_NAME_new()))
603 X509_NAME_free(nm);
607 ret = X509V3_NAME_from_section(nm, sk, MBSTRING_ASC)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessage.java 103 NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); local
141 nm.notify(R.string.imcoming_message_ticker_text, notif);
152 NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); local
194 nm.notify(R.string.imcoming_message_ticker_text, notif);
  /developers/build/prebuilts/gradle/CustomNotifications/Application/src/main/java/com/example/android/customnotifications/
MainActivity.java 104 NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); local
105 nm.notify(0, notification);
  /developers/samples/android/notification/CustomNotifications/Application/src/main/java/com/example/android/customnotifications/
MainActivity.java 104 NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); local
105 nm.notify(0, notification);
  /development/samples/browseable/CustomNotifications/src/com.example.android.customnotifications/
MainActivity.java 104 NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); local
105 nm.notify(0, notification);
  /external/chromium_org/third_party/skia/platform_tools/android/bin/utils/
setup_toolchain.sh 96 # Create symlinks for nm & readelf and add them to the path so that the ninja
99 ln -sf $ANDROID_TOOLCHAIN_PREFIX-nm $ANDROID_TOOLCHAIN/nm
  /external/llvm/test/Object/
coff-archive-short.test 8 RUN: llvm-nm --numeric-sort -M %p/Inputs/coff_archive_short.lib | FileCheck -check-prefix=CHECKIDX %s
  /external/openssl/crypto/pem/
pem_lib.c 82 static int check_pem(const char *nm, const char *name);
185 static int check_pem(const char *nm, const char *name)
187 /* Normal matching nm and name */
188 if (!strcmp(nm,name)) return 1;
196 if(!strcmp(nm,PEM_STRING_PKCS8))
198 if(!strcmp(nm,PEM_STRING_PKCS8INF))
200 slen = pem_check_suffix(nm, "PRIVATE KEY");
207 ameth = EVP_PKEY_asn1_find_str(NULL, nm, slen);
218 slen = pem_check_suffix(nm, "PARAMETERS");
222 ameth = EVP_PKEY_asn1_find_str(&e, nm, slen)
277 char *nm=NULL,*header=NULL; local
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x_name.c 184 union { X509_NAME *x; ASN1_VALUE *a; } nm = {NULL}; local
199 if(!x509_name_ex_new(&nm.a, NULL)) goto err;
201 if(!BUF_MEM_grow(nm.x->bytes, p - q)) goto err;
202 memcpy(nm.x->bytes->data, q, p - q);
210 if(!sk_X509_NAME_ENTRY_push(nm.x->entries, entry))
216 ret = x509_name_canon(nm.x);
219 nm.x->modified = 0;
220 *val = nm.a;
224 if (nm.x != NULL)
225 X509_NAME_free(nm.x)
    [all...]
  /external/openssl/crypto/asn1/
x_name.c 179 union { X509_NAME *x; ASN1_VALUE *a; } nm = {NULL}; local
193 if(!x509_name_ex_new(&nm.a, NULL)) goto err;
195 if(!BUF_MEM_grow(nm.x->bytes, p - q)) goto err;
196 memcpy(nm.x->bytes->data, q, p - q);
204 if(!sk_X509_NAME_ENTRY_push(nm.x->entries, entry))
210 ret = x509_name_canon(nm.x);
213 nm.x->modified = 0;
214 *val = nm.a;
218 if (nm.x != NULL)
219 X509_NAME_free(nm.x)
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
parse.y 120 trans_opt ::= TRANSACTION nm.
132 cmd ::= SAVEPOINT nm(X). {
135 cmd ::= RELEASE savepoint_opt nm(X). {
138 cmd ::= ROLLBACK trans_opt TO savepoint_opt nm(X). {
145 create_table ::= createkw temp(T) TABLE ifnotexists(E) nm(Y) dbnm(Z). {
179 columnid(A) ::= nm(X). {
240 %type nm {Token}
241 nm(A) ::= id(X). {A = X;}
242 nm(A) ::= STRING(X). {A = X;}
243 nm(A) ::= JOIN_KW(X). {A = X;
    [all...]
  /external/openssl/crypto/ocsp/
ocsp_vfy.c 70 static int ocsp_req_find_signer(X509 **psigner, OCSP_REQUEST *req, X509_NAME *nm, STACK_OF(X509) *certs,
366 X509_NAME *nm; local
381 nm = gen->d.directoryName;
382 ret = ocsp_req_find_signer(&signer, req, nm, certs, store, flags);
432 static int ocsp_req_find_signer(X509 **psigner, OCSP_REQUEST *req, X509_NAME *nm, STACK_OF(X509) *certs,
438 signer = X509_find_by_subject(req->optionalSignature->certs, nm);
446 signer = X509_find_by_subject(certs, nm);
  /development/samples/training/notify-user/src/com/example/android/pingme/
PingService.java 50 NotificationManager nm = (NotificationManager) local
59 nm.cancel(CommonConstants.NOTIFICATION_ID);
65 nm.cancel(CommonConstants.NOTIFICATION_ID);
  /external/chromium_org/third_party/boringssl/src/crypto/perlasm/
x86nasm.pl 173 { my $nm=shift;
175 push(@out,"safeseh ".&::LABEL($nm,$nmdecor.$nm)."\n");
  /external/openssl/crypto/perlasm/
x86nasm.pl 171 { my $nm=shift;
173 push(@out,"safeseh ".&::LABEL($nm,$nmdecor.$nm)."\n");
  /external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/
neg_format.pass.cpp 28 explicit Fnf(const std::string& nm, std::size_t refs = 0)
29 : std::moneypunct_byname<char, false>(nm, refs) {}
36 explicit Fnt(const std::string& nm, std::size_t refs = 0)
37 : std::moneypunct_byname<char, true>(nm, refs) {}
44 explicit Fwf(const std::string& nm, std::size_t refs = 0)
45 : std::moneypunct_byname<wchar_t, false>(nm, refs) {}
52 explicit Fwt(const std::string& nm, std::size_t refs = 0)
53 : std::moneypunct_byname<wchar_t, true>(nm, refs) {}
pos_format.pass.cpp 28 explicit Fnf(const std::string& nm, std::size_t refs = 0)
29 : std::moneypunct_byname<char, false>(nm, refs) {}
36 explicit Fnt(const std::string& nm, std::size_t refs = 0)
37 : std::moneypunct_byname<char, true>(nm, refs) {}
44 explicit Fwf(const std::string& nm, std::size_t refs = 0)
45 : std::moneypunct_byname<wchar_t, false>(nm, refs) {}
52 explicit Fwt(const std::string& nm, std::size_t refs = 0)
53 : std::moneypunct_byname<wchar_t, true>(nm, refs) {}
  /external/libcxx/test/localization/locale.categories/category.time/locale.time.get.byname/
get_date.pass.cpp 32 explicit my_facet(const std::string& nm, std::size_t refs = 0)
33 : F(nm, refs) {}

Completed in 8460 milliseconds

1 23 4 5 6 7 8 910