Home
last modified time | relevance | path

Searched refs:new (Results 1 – 25 of 29) sorted by relevance

12

/system/core/sh/
Dnodes.c213 union node *new; local
217 new = funcblock;
225 new->nbinary.ch2 = copynode(n->nbinary.ch2);
226 new->nbinary.ch1 = copynode(n->nbinary.ch1);
229 new->ncmd.redirect = copynode(n->ncmd.redirect);
230 new->ncmd.args = copynode(n->ncmd.args);
231 new->ncmd.backgnd = n->ncmd.backgnd;
234 new->npipe.cmdlist = copynodelist(n->npipe.cmdlist);
235 new->npipe.backgnd = n->npipe.backgnd;
240 new->nredir.redirect = copynode(n->nredir.redirect);
[all …]
Dcd.c244 char *new; in updatepwd() local
270 STARTSTACKSTR(new); in updatepwd()
274 STPUTC(*p++, new); in updatepwd()
276 STUNPUTC(new); in updatepwd()
280 while (new > stackblock() && (STUNPUTC(new), *new) != '/'); in updatepwd()
282 STPUTC('/', new); in updatepwd()
284 STPUTC(*p++, new); in updatepwd()
287 if (new == stackblock()) in updatepwd()
288 STPUTC('/', new); in updatepwd()
289 STACKSTRNUL(new); in updatepwd()
Dexec.c225 char **new; in execinterp() local
266 new = ckmalloc(i + ((char *)ap2 - (char *)argv)); in execinterp()
267 ap = newargs, ap2 = new; in execinterp()
272 shellexec(new, envp, pathval(), 0); in execinterp()
696 const char *old, *new; in changepath() local
702 new = newval; in changepath()
707 if (*old != *new) { in changepath()
709 if ((*old == '\0' && *new == ':') in changepath()
710 || (*old == ':' && *new == '\0')) in changepath()
712 old = new; /* ignore subsequent differences */ in changepath()
[all …]
Dmknodes.sh180 echo " new = funcblock;"
206 echo " new->$f = ${fn}n->$f${fn:+)};"
211 echo " new->type = n->type;"
Dnodes.c.pat111 union node *new;
114 return new;
/system/core/toolbox/
Dvmstat.c69 static void print_line(struct state *old, struct state *new);
224 static void print_line(struct state *old, struct state *new) { in print_line() argument
226 us = JP(new->cpu_us - old->cpu_us); NORM(us); in print_line()
227 ni = JP(new->cpu_ni - old->cpu_ni); NORM(ni); in print_line()
228 sy = JP(new->cpu_sy - old->cpu_sy); NORM(sy); in print_line()
229 id = JP(new->cpu_id - old->cpu_id); NORM(id); in print_line()
230 wa = JP(new->cpu_wa - old->cpu_wa); NORM(wa); in print_line()
231 ir = JP(new->cpu_ir - old->cpu_ir); NORM(ir); in print_line()
233 new->procs_r ? (new->procs_r - 1) : 0, new->procs_b, in print_line()
234 new->mem_free, new->mem_mapped, new->mem_anon, new->mem_slab, in print_line()
[all …]
Diftop.c196 static int print_interfaces(struct if_stats *old, struct if_stats *new, int nr) in print_interfaces() argument
203 new->name, new->mtu, in print_interfaces()
204 new->rx_bytes - old->rx_bytes, in print_interfaces()
205 new->rx_packets - old->rx_packets, in print_interfaces()
206 new->rx_errors - old->rx_errors, in print_interfaces()
207 new->rx_dropped - old->rx_dropped, in print_interfaces()
208 new->tx_bytes - old->tx_bytes, in print_interfaces()
209 new->tx_packets - old->tx_packets, in print_interfaces()
210 new->tx_errors - old->tx_errors, in print_interfaces()
211 new->tx_dropped - old->tx_dropped); in print_interfaces()
[all …]
Dmount.c69 char *new; in add_extra_option() local
71 new = realloc(extra->str, newlen + 1); /* +1 for NUL */ in add_extra_option()
72 if (!new) in add_extra_option()
75 extra->str = new; in add_extra_option()
/system/media/opensles/tools/hashgen/
DREADME.txt11 If the differences look OK, then copy the new IID_to_MPH.c back to
13 Build and test the usage of the new IID.
/system/core/libpixelflinger/tinyutils/
DTypeHelpers.h112 new(p++) TYPE;
131 new(d) TYPE(*s);
154 new(where) TYPE(*what);
172 new(d) TYPE(*s);
190 new(d) TYPE(*s);
/system/core/liblinenoise/
Dlinenoise.c432 char **new; in linenoiseHistorySetMaxLen() local
438 new = malloc(sizeof(char*)*len); in linenoiseHistorySetMaxLen()
439 if (new == NULL) return 0; in linenoiseHistorySetMaxLen()
441 memcpy(new,history+(history_max_len-tocopy), sizeof(char*)*tocopy); in linenoiseHistorySetMaxLen()
443 history = new; in linenoiseHistorySetMaxLen()
/system/extras/ext4_utils/
Dallocate.c547 struct region *new; in do_split_allocation() local
559 new = malloc(sizeof(struct region)); in do_split_allocation()
561 new->bg = reg->bg; in do_split_allocation()
562 new->block = reg->block + len; in do_split_allocation()
563 new->len = reg->len - len; in do_split_allocation()
564 new->next = reg->next; in do_split_allocation()
565 new->prev = reg; in do_split_allocation()
567 reg->next = new; in do_split_allocation()
571 alloc->list.iter = new; in do_split_allocation()
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/Inc/
DTI_OAL.h131 ClassBase* ClassBase::CreateObject(){ return (ClassBase*) new ClassApi;} \
140 {if( _instance == 0){_instance = new ClassApi();} \
/system/core/fastboot/
Dgenkey.sh14 openssl req -new -x509 -key $1.pem -passin pass:"$2" \
/system/media/opensles/libopensles/
DIPresetReverb.c106 (void) new (&this->mPresetReverbEffect) android::sp<android::AudioEffect>(); in IPresetReverb_init()
DIAndroidEffect.c111 this->mEffects = new android::KeyedVector<SLuint32, android::AudioEffect* >(); in IAndroidEffect_init()
DIAndroidEffectCapabilities.c101 this->mFxDescriptors = (effect_descriptor_t*) new effect_descriptor_t[this->mNumFx]; in IAndroidEffectCapabilities_Expose()
DIVirtualizer.c193 (void) new (&this->mVirtualizerEffect) android::sp<android::AudioEffect>(); in IVirtualizer_init()
DIBassBoost.c191 (void) new (&this->mBassBoostEffect) android::sp<android::AudioEffect>(); in IBassBoost_init()
DIEngine.c164 (void) new (&this->mSfPlayer) android::sp<android::SfPlayer>(); in IEngine_CreateAudioPlayer()
165 (void) new (&this->mAuxEffect) android::sp<android::AudioEffect>(); in IEngine_CreateAudioPlayer()
DIEqualizer.c497 (void) new (&this->mEqEffect) android::sp<android::AudioEffect>(); in IEqualizer_init()
/system/core/libcutils/
Dprivate.h246 char * icatalloc P((char * old, const char * new));
/system/core/init/
DREADME.BOOTCHART10 On the emulator, use the new -bootchart <timeout> option to boot with bootcharting
/system/core/adb/
DSERVICES.TXT27 connection. Instead, a new device list description is sent
35 new emulator starts up. <port> is a decimal number corresponding
40 This mechanism allows the ADB server to know when new emulator
DOVERVIEW.TXT40 meaning that the ADB server detected a new device/emulator, but could not

12