/external/libnetfilter_conntrack/src/conntrack/ |
copy.c | 13 const struct nf_conntrack *orig) 15 dest->head.orig.src.v4 = orig->head.orig.src.v4; 19 const struct nf_conntrack *orig) 21 dest->head.orig.dst.v4 = orig->head.orig.dst.v4; 25 const struct nf_conntrack *orig) 27 dest->repl.src.v4 = orig->repl.src.v4 [all...] |
grp_getter.c | 15 this->src = ct->head.orig.src.v4; 16 this->dst = ct->head.orig.dst.v4; 29 memcpy(this->src, &ct->head.orig.src.v6, sizeof(uint32_t)*4); 30 memcpy(this->dst, &ct->head.orig.dst.v6, sizeof(uint32_t)*4); 43 this->sport = ct->head.orig.l4src.all; 44 this->dport = ct->head.orig.l4dst.all; 57 this->type = ct->head.orig.l4dst.icmp.type; 58 this->code = ct->head.orig.l4dst.icmp.code; 59 this->id = ct->head.orig.l4src.icmp.id; 101 memcpy(&this->addr, &ct->head.orig.src, sizeof(ct->head.orig.src)) [all...] |
/external/python/setuptools/setuptools/command/ |
register.py | 1 import distutils.command.register as orig 4 class register(orig.register): 5 __doc__ = orig.register.__doc__ 10 orig.register.run(self)
|
bdist_wininst.py | 1 import distutils.command.bdist_wininst as orig 4 class bdist_wininst(orig.bdist_wininst): 19 orig.bdist_wininst.run(self)
|
bdist_rpm.py | 1 import distutils.command.bdist_rpm as orig 4 class bdist_rpm(orig.bdist_rpm): 19 orig.bdist_rpm.run(self) 24 spec = orig.bdist_rpm._make_spec_file(self)
|
install.py | 6 import distutils.command.install as orig 12 _install = orig.install 15 class install(orig.install): 18 user_options = orig.install.user_options + [ 23 boolean_options = orig.install.boolean_options + [ 33 orig.install.initialize_options(self) 38 orig.install.finalize_options(self) 51 return orig.install.handle_extra_path(self) 61 return orig.install.run(self) 65 orig.install.run(self [all...] |
upload.py | 2 from distutils.command import upload as orig 5 class upload(orig.upload): 12 orig.upload.finalize_options(self)
|
/art/dexlayout/ |
dex_verify.cc | 51 template<class T> bool VerifyIds(dex_ir::CollectionVector<T>& orig, 55 auto orig_iter = orig.begin(); 57 for (; orig_iter != orig.end() && output_iter != output.end(); ++orig_iter, ++output_iter) { 62 if (orig_iter != orig.end() || output_iter != output.end()) { 64 if (orig_iter == orig.end()) { 75 bool VerifyId(dex_ir::StringId* orig, dex_ir::StringId* output, std::string* error_msg) { 76 if (strcmp(orig->Data(), output->Data()) != 0) { 78 orig->GetIndex(), 79 orig->GetOffset(), 80 orig->Data() [all...] |
dex_verify.h | 33 template<class T> bool VerifyIds(dex_ir::CollectionVector<T>& orig, 37 bool VerifyId(dex_ir::StringId* orig, dex_ir::StringId* output, std::string* error_msg); 38 bool VerifyId(dex_ir::TypeId* orig, dex_ir::TypeId* output, std::string* error_msg); 39 bool VerifyId(dex_ir::ProtoId* orig, dex_ir::ProtoId* output, std::string* error_msg); 40 bool VerifyId(dex_ir::FieldId* orig, dex_ir::FieldId* output, std::string* error_msg); 41 bool VerifyId(dex_ir::MethodId* orig, dex_ir::MethodId* output, std::string* error_msg); 43 bool VerifyClassDefs(dex_ir::CollectionVector<dex_ir::ClassDef>& orig, 46 bool VerifyClassDef(dex_ir::ClassDef* orig, dex_ir::ClassDef* output, std::string* error_msg); 48 bool VerifyTypeList(const dex_ir::TypeList* orig, const dex_ir::TypeList* output); 50 bool VerifyAnnotationsDirectory(dex_ir::AnnotationsDirectoryItem* orig, [all...] |
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
ShadowResolveInfo.java | 48 public static ResolveInfo newResolveInfo(ResolveInfo orig) { 51 copy = new ResolveInfo(orig); 54 copy.activityInfo = orig.activityInfo; 55 copy.serviceInfo = orig.serviceInfo; 56 copy.filter = orig.filter; 57 copy.priority = orig.priority; 58 copy.preferredOrder = orig.preferredOrder; 59 copy.match = orig.match; 60 copy.specificIndex = orig.specificIndex; 61 copy.labelRes = orig.labelRes [all...] |
/external/gptfdisk/ |
guid.h | 45 GUIDData(const GUIDData & orig); 46 GUIDData(const string & orig); 47 GUIDData(const char * orig); 51 GUIDData & operator=(const GUIDData & orig); 52 GUIDData & operator=(const string & orig); 53 GUIDData & operator=(const char * orig); 58 int operator==(const GUIDData & orig) const; 59 int operator!=(const GUIDData & orig) const;
|
parttypes.h | 40 PartType(const PartType & orig); 41 PartType(const GUIDData & orig); 48 PartType & operator=(const string & orig); 49 PartType & operator=(const char * orig); 52 GUIDData & operator=(const GUIDData & orig) {return GUIDData::operator=(orig);}
|
guid.cc | 39 GUIDData::GUIDData(const GUIDData & orig) { 40 memcpy(uuidData, orig.uuidData, sizeof(uuidData)); 43 GUIDData::GUIDData(const string & orig) { 44 operator=(orig); 47 GUIDData::GUIDData(const char * orig) { 48 operator=(orig); 54 GUIDData & GUIDData::operator=(const GUIDData & orig) { 55 memcpy(uuidData, orig.uuidData, sizeof(uuidData)); 57 } // GUIDData::operator=(const GUIDData & orig) 68 GUIDData & GUIDData::operator=(const string & orig) { [all...] |
mbrpart.cc | 62 MBRPart::MBRPart(const MBRPart& orig) { 64 operator=(orig); 71 MBRPart& MBRPart::operator=(const MBRPart& orig) { 74 status = orig.status; 76 firstSector[i] = orig.firstSector[i]; 77 lastSector[i] = orig.lastSector[i]; 79 partitionType = orig.partitionType; 80 firstLBA = orig.firstLBA; 81 lengthLBA = orig.lengthLBA; 82 includeAs = orig.includeAs [all...] |
/external/selinux/libsepol/cil/src/ |
cil_copy_ast.c | 100 struct cil_block *orig = data; local 101 char *key = orig->datum.name; 118 struct cil_blockabstract *orig = data; local 123 new->block_str = orig->block_str; 132 struct cil_blockinherit *orig = data; local 137 new->block_str = orig->block_str; 138 new->block = orig->block; 147 struct cil_policycap *orig = data; local 148 char *key = orig->datum.name; 165 struct cil_perm *orig = data local 218 struct cil_classmapping *orig = data; local 235 struct cil_class *orig = data; local 257 struct cil_classorder *orig = data; local 272 struct cil_classpermission *orig = data; local 296 struct cil_classpermissionset *orig = data; local 312 struct cil_classcommon *orig = data; local 327 struct cil_sid *orig = data; local 345 struct cil_sidcontext *orig = data; local 364 struct cil_sidorder *orig = data; local 379 struct cil_user *orig = data; local 397 struct cil_userattribute *orig = data; local 415 struct cil_userattributeset *orig = data; local 432 struct cil_userrole *orig = data; local 447 struct cil_userlevel *orig = data; local 467 struct cil_userrange *orig = data; local 488 struct cil_userprefix *orig = data; local 503 struct cil_role *orig = data; local 521 struct cil_roletype *orig = data; local 536 struct cil_roleattribute *orig = data; local 554 struct cil_roleattributeset *orig = data; local 571 struct cil_roleallow *orig = data; local 586 struct cil_type *orig = data; local 604 struct cil_typepermissive *orig = data; local 618 struct cil_typeattribute *orig = data; local 636 struct cil_typeattributeset *orig = data; local 653 struct cil_expandtypeattribute *orig = data; local 676 struct cil_alias *orig = data; local 696 struct cil_aliasactual *orig = data; local 711 struct cil_roletransition *orig = data; local 728 struct cil_nametypetransition *orig = data; local 747 struct cil_rangetransition *orig = data; local 770 struct cil_bool *orig = data; local 790 struct cil_tunable *orig = data; local 817 struct cil_avrule *orig = data; local 845 struct cil_permissionx *orig = data; local 867 struct cil_type_rule *orig = data; local 885 struct cil_sens *orig = data; local 903 struct cil_cat *orig = data; local 928 struct cil_catset *orig = data; local 950 struct cil_senscat *orig = data; local 966 struct cil_catorder *orig = data; local 981 struct cil_sensorder *orig = data; local 1007 struct cil_level *orig = data; local 1044 struct cil_levelrange *orig = data; local 1081 struct cil_context *orig = data; local 1104 struct cil_netifcon *orig = data; local 1132 struct cil_genfscon *orig = data; local 1154 struct cil_filecon *orig = data; local 1176 struct cil_nodecon *orig = data; local 1209 struct cil_ibpkeycon *orig = data; local 1232 struct cil_ibendportcon *orig = data; local 1254 struct cil_portcon *orig = data; local 1277 struct cil_pirqcon *orig = data; local 1298 struct cil_iomemcon *orig = data; local 1320 struct cil_ioportcon *orig = data; local 1342 struct cil_pcidevicecon *orig = data; local 1363 struct cil_devicetreecon *orig = data; local 1384 struct cil_fsuse *orig = data; local 1447 struct cil_constrain *orig = data; local 1463 struct cil_validatetrans *orig = data; local 1480 struct cil_call *orig = data; local 1510 struct cil_macro *orig = data; local 1575 struct cil_optional *orig = data; local 1599 struct cil_ipaddr *orig = data; local 1620 struct cil_condblock *orig = data; local 1631 struct cil_booleanif *orig = data; local 1647 struct cil_tunableif *orig = data; local 1662 struct cil_default *orig = data; local 1682 struct cil_defaultrange *orig = data; local 1700 struct cil_handleunknown *orig = data; local 1712 struct cil_mls *orig = data; local 1724 struct cil_bounds *orig = data; local 1739 struct cil_src_info *orig = data; local [all...] |
/external/python/cpython3/Lib/email/ |
encoders.py | 32 orig = msg.get_payload(decode=True) 33 encdata = str(_bencode(orig), 'ascii') 45 orig = msg.get_payload(decode=True) 46 encdata = _qencode(orig) 55 orig = msg.get_payload(decode=True) 56 if orig is None: 63 orig.decode('ascii')
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/ |
runiSACRate.txt | 8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_1.pcm > $LOGG 9 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_2.pcm >> $LOGG 10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_3.pcm >> $LOGG 11 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_4.pcm >> $LOGG 12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_5.pcm >> $LOGG 13 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 60 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_6.pcm >> $LOGG 14 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_7.pcm >> $LOG [all...] |
/external/ImageMagick/PerlMagick/demo/ |
pixel-fx.pl | 19 my $orig = Image::Magick->new(); 20 my $w = $orig->Read('rose:'); 26 my $dest = $orig->Clone(); 39 my @pixel = $orig->GetPixel( x=>$i, y=>$j );
|
/external/openssh/regress/ |
hostkey-agent.sh | 6 rm -f $OBJ/agent-key.* $OBJ/ssh_proxy.orig $OBJ/known_hosts.orig 13 grep -vi 'hostkey' $OBJ/sshd_proxy > $OBJ/sshd_proxy.orig 14 echo "HostKeyAgent $SSH_AUTH_SOCK" >> $OBJ/sshd_proxy.orig 22 ) >> $OBJ/known_hosts.orig 25 echo "Hostkey $OBJ/agent-key.${k}" >> $OBJ/sshd_proxy.orig 29 cp $OBJ/known_hosts.orig $OBJ/known_hosts 36 cp $OBJ/sshd_proxy.orig $OBJ/sshd_proxy 40 cp $OBJ/known_hosts.orig $OBJ/known_hosts
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/ |
encoders.py | 46 orig = msg.get_payload()
47 encdata = _bencode(orig)
59 orig = msg.get_payload()
60 encdata = _qencode(orig)
69 orig = msg.get_payload()
70 if orig is None:
77 orig.encode('ascii')
|
/external/python/cpython2/Lib/email/ |
encoders.py | 46 orig = msg.get_payload() 47 encdata = _bencode(orig) 59 orig = msg.get_payload() 60 encdata = _qencode(orig) 69 orig = msg.get_payload() 70 if orig is None: 77 orig.encode('ascii')
|
/build/make/tools/ |
merge-event-log-tags.py | 94 orig = by_tagname[t.tagname] variable 97 if orig.tagnum is None: 98 orig.tagnum = t.tagnum 100 t.tagnum = orig.tagnum 102 if (t.tagnum == orig.tagnum and 103 t.description == orig.description): 108 (t.tagname, t.tagnum, orig.filename, orig.linenum), 113 (t.tagname, orig.tagnum, orig.filename, orig.linenum) 118 orig = by_tagnum[t.tagnum] variable [all...] |
/external/autotest/client/tools/ |
diffprofile | 27 orig = {} variable 33 if orig.has_key(key): 34 orig[key] += count 36 orig[key] = count 52 if len(orig) < 2* results_per_sign or len(new) < 2 * results_per_sign: 57 if orig.has_key(key) and orig[key] > 0: 58 pct = (100 * diff[key]) / orig[key]
|
/external/freetype/builds/atari/ |
gen-purec-patch.sh | 18 mkdir -p ${OBJ_DIR}/builds/atari/tmp/orig 21 ( cd ${OBJ_DIR}/builds/atari/tmp/orig && cpio -idum ) 26 cp -pr orig purec 27 for f in `cd orig && find . -type f` 30 env LANG=C awk -f deflinejoiner.awk < orig/$f > purec/$f 35 env LANG=C awk -f deflinejoiner.awk < orig/include/ft2build.h >> purec/include/ft2build.h 37 env LANG=C diff -ur orig purec > ../purec.diff
|
/external/libnetfilter_conntrack/src/expect/ |
build_mnl.c | 19 nfct_build_tuple(nlh, &exp->expected.orig, CTA_EXPECT_TUPLE); 22 nfct_build_tuple(nlh, &exp->master.orig, CTA_EXPECT_MASTER); 25 nfct_build_tuple(nlh, &exp->mask.orig, CTA_EXPECT_MASK);
|